We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d34e20 commit d3dc8b5Copy full SHA for d3dc8b5
.github/workflows/docker-publish.yml
@@ -47,7 +47,7 @@ jobs:
47
# Strip "v" prefix from tag name
48
[[ "${{ github.ref }}" == "refs/tags/"* ]] && VERSION=$(echo ${VERSION} | sed -e 's/^v//')
49
echo "VERSION=${VERSION}" >> $GITHUB_ENV
50
- echo "VERSION=${{VERSION}}"
+ echo "VERSION=${{ env.VERSION }}"
51
-
52
name: Set up QEMU
53
uses: docker/setup-qemu-action@v2
@@ -69,4 +69,4 @@ jobs:
69
platforms: linux/amd64,linux/arm64
70
push: true
71
tags: |
72
- ghcr.io/${{ github.repository_owner }}/charts-ci:${{VERSION}}
+ ghcr.io/${{ github.repository_owner }}/charts-ci:${{ env.VERSION }}
0 commit comments