We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 963907d + 174c9fa commit 0191a47Copy full SHA for 0191a47
1 file changed
.github/workflows/docker-image.yml
@@ -26,7 +26,7 @@ jobs:
26
echo "DOCKER_TAG=$('${{ github.ref_name }}' -replace '^v', '' -replace '\.\w+$', '')" >> $GITHUB_OUTPUT
27
28
- name: Build Docker image
29
- run: docker build . --file Dockerfile --tag ababak/cgcpp:$DOCKER_TAG
+ run: docker build . --file Dockerfile --tag ababak/cgcpp:${{ steps.vars.outputs.DOCKER_TAG }}
30
31
- name: Push
32
- run: docker push ababak/cgcpp:$DOCKER_TAG
+ run: docker push ababak/cgcpp:${{ steps.vars.outputs.DOCKER_TAG }}
0 commit comments