Skip to content

Commit 23c0204

Browse files
committed
fix: Use fully qualified Docker image names in workflow
1 parent 09f3702 commit 23c0204

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ jobs:
4949
with:
5050
context: .
5151
push: true
52-
tags: ${{ secrets.DOCKERHUB_USERNAME }}/go_webapp:latest,${{ secrets.DOCKERHUB_USERNAME }}/go_webapp:${{ github.sha }}
52+
tags: |
53+
docker.io/${{ secrets.DOCKERHUB_USERNAME }}/go_webapp:latest
54+
docker.io/${{ secrets.DOCKERHUB_USERNAME }}/go_webapp:${{ github.sha }}
5355
cache-from: type=gha
5456
cache-to: type=gha,mode=max

0 commit comments

Comments
 (0)