8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f44a225 commit 491be58Copy full SHA for 491be58
.github/workflows/dockerpublish.yml
@@ -21,7 +21,7 @@ jobs:
21
- uses: actions/checkout@v2
22
23
- name: Build image
24
- run: docker build . --file Dockerfile --tag $IMAGE_NAME
+ run: docker build . --file Dockerfile --tag $IMAGE_NAME:latest
25
26
- name: Log into registry
27
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin
@@ -34,4 +34,4 @@ jobs:
34
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
35
36
echo IMAGE_ID=$IMAGE_ID
37
- docker push $IMAGE_ID
+ docker push $IMAGE_ID:latest
0 commit comments