CI: Fix Docker Hub image build & push (#1100)

We tried using the auto Docker Hub thingie, but it's flaky.
Reverting to manually pushing as part of release CI.
This commit is contained in:
Pranav Shikarpur 2022-01-06 20:44:31 +05:30 committed by GitHub
parent 0a561a62c0
commit 7b4d172248
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 31 additions and 1 deletions

View File

@ -20,4 +20,34 @@ jobs:
- run: npm run lint
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# Docker build image and push to DockerHub
docker:
needs: build
env:
IMAGE_ID: ${{ secrets.DOCKERHUB_USERNAME }}/nativefier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Build image
run: docker build . --file Dockerfile --tag "$IMAGE_ID:latest"
- name: Login to Docker Hub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Tag and Push
run: |
# Tag docker image the commit SHA
docker tag "$IMAGE_ID:latest" "$IMAGE_ID:${GITHUB_SHA::8}"
# Push the images to the registry
docker push "$IMAGE_ID:latest"
docker push "$IMAGE_ID:${GITHUB_SHA::8}"