Skip to content

Commit

Permalink
fix: remove package name from version tag for Docker tagging (#1232)
Browse files Browse the repository at this point in the history
Co-authored-by: Lukasz Gornicki <[email protected]>
  • Loading branch information
ayushnau and derberg authored Jul 29, 2024
1 parent 97348b1 commit 36ee8a8
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/breezy-falcons-hammer.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@asyncapi/generator": patch
---

Fix docker image publishing. Removed package name from version tag for Docker tagging.
2 changes: 1 addition & 1 deletion .github/workflows/release-docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
id: version
run: |
VERSION=${{github.event.release.tag_name}}
VERSION_WITHOUT_V=${VERSION:1}
VERSION_WITHOUT_V=${VERSION##*@}
echo "value=${VERSION_WITHOUT_V}" >> $GITHUB_OUTPUT
- name: Set Up QEMU
Expand Down

0 comments on commit 36ee8a8

Please sign in to comment.