Skip to content

Commit

Permalink
Fix release workflow to accept proper tag version
Browse files Browse the repository at this point in the history
  • Loading branch information
dgarros authored and fatih-acar committed Dec 19, 2024
1 parent 5d4e2a2 commit 307ed5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
| jq -r '.tag_name') >> "$GITHUB_OUTPUT"
- name: Check tag version
if: github.event.release.tag_name != format('infrahub-v{0}', steps.release.outputs.version)
if: github.event.release.tag_name != format('v{0}', steps.release.outputs.version)
run: |
echo "Tag version does not match python project version"
exit 1
Expand Down

0 comments on commit 307ed5e

Please sign in to comment.