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 5ec725e commit 3e39c95Copy full SHA for 3e39c95
.github/workflows/build.yaml
@@ -25,6 +25,7 @@ jobs:
25
- name: createVersion
26
run: |
27
echo "VERSION=$(git describe --tag --always)" >> $GITHUB_ENV
28
+ echo "CLEAN_VERSION=$(git describe --tag --always | sed s/^v//)" >> $GITHUB_ENV
29
30
- name: 'Login to GitHub Container Registry'
31
uses: docker/[email protected]
@@ -35,4 +36,4 @@ jobs:
35
36
37
- name: build and push
38
- make docker-buildx bundle bundle-build bundle-push IMG=ghcr.io/${{ github.repository }}:${{ env.VERSION }}
39
+ make docker-buildx bundle bundle-build bundle-push IMG=ghcr.io/${{ github.repository }}:${{ env.CLEAN_VERSION }}
0 commit comments