mirror of
https://github.com/Llewellynvdm/nativefier.git
synced 2024-12-22 18:18:55 +00:00
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:
parent
0a561a62c0
commit
7b4d172248
30
.github/workflows/publish.yml
vendored
30
.github/workflows/publish.yml
vendored
@ -21,3 +21,33 @@ jobs:
|
|||||||
- 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:
|
||||||
|
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}"
|
||||||
|
Loading…
Reference in New Issue
Block a user