We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07824a0 commit d0d8a23Copy full SHA for d0d8a23
1 file changed
.github/workflows/iso-ci.yaml
@@ -51,6 +51,11 @@ jobs:
51
run: docker info
52
- name: buildx inspect
53
run: docker buildx inspect
54
+
55
+ - name: get tag without v
56
+ id: tag
57
+ if: ${{ github.event_name == 'release' && github.event.action == 'published' }}
58
+ uses: battila7/get-version-action@v2
59
60
# Build and (optionally) push the driver image
61
- name: build the driver image
@@ -62,4 +67,4 @@ jobs:
62
67
# Only push if we are publishing a release
63
68
push: ${{ github.event_name == 'release' && github.event.action == 'published' }}
64
69
# Use a 'dev' tag, that won't be pushed, for non-release builds
65
- tags: docker.io/ibmcom/ibm-storage-odf-block-driver:${{ github.event.release.tag_name || 'dev' }}
70
+ tags: docker.io/ibmcom/ibm-storage-odf-block-driver:${{ steps.tag.outputs.version-without-v || 'dev' }}
0 commit comments