CI: (Attempt to) push image to our org, not my personal account

This commit is contained in:
Ronan Jouchet 2022-01-06 10:32:48 -05:00
parent 863377d814
commit 97cce9196d
1 changed files with 22 additions and 34 deletions

View File

@ -2,52 +2,40 @@ name: publish
on: on:
release: release:
types: types:
- created - created
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
# Setup .npmrc file to publish to npm # Setup .npmrc file to publish to npm
- uses: actions/setup-node@v1 - uses: actions/setup-node@v1
with: with:
# Align the version of Node here with ci.yml. # Align the version of Node here with ci.yml.
node-version: '17.x' node-version: '17.x'
registry-url: 'https://registry.npmjs.org' registry-url: 'https://registry.npmjs.org'
# Will also (through `prepare` hook): 1. install ./app, and 2. build # Will also (through `prepare` hook): 1. install ./app, and 2. build
- run: npm ci --no-fund - run: npm ci --no-fund
- run: npm test - run: npm test
- run: npm run lint - run: npm run lint
- run: npm publish - run: npm publish
env: env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# Docker build image and push to DockerHub
docker: docker:
needs: build needs: build
env:
IMAGE_ID: ${{ secrets.DOCKERHUB_USERNAME }}/nativefier
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- uses: actions/checkout@v2 - uses: actions/checkout@v2
- name: Build Docker image
- name: Build image run: docker build . --file Dockerfile --tag "nativefier/nativefier:latest"
run: docker build . --file Dockerfile --tag "$IMAGE_ID:latest"
- name: Login to Docker Hub - name: Login to Docker Hub
uses: docker/login-action@v1 uses: docker/login-action@v1
with: with:
username: ${{ secrets.DOCKERHUB_USERNAME }} username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }} password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Tag and push Docker image
- name: Tag and Push
run: | run: |
# Tag docker image the commit SHA docker tag "nativefier/nativefier:latest" "nativefier/nativefier:${GITHUB_SHA::8}"
docker tag "$IMAGE_ID:latest" "$IMAGE_ID:${GITHUB_SHA::8}" docker push "nativefier/nativefier:latest"
docker push "nativefier/nativefier:${GITHUB_SHA::8}"
# Push the images to the registry
docker push "$IMAGE_ID:latest"
docker push "$IMAGE_ID:${GITHUB_SHA::8}"