We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a7cde5b commit 124c850Copy full SHA for 124c850
1 file changed
.github/workflows/create-linked-release.yml
@@ -73,8 +73,9 @@ jobs:
73
id: check_tag
74
if: steps.validate_tag.outputs.is_valid == 'true'
75
env:
76
- RELEASE_TAG: v${{ steps.validate_tag.outputs.new_version }}
+ RELEASE_TAG: ${{ steps.validate_tag.outputs.new_version }}
77
run: |
78
+ RELEASE_TAG="v${RELEASE_TAG#v}" # Ensure the tag starts with 'v'
79
if git tag --list | grep -q "^${RELEASE_TAG}$"; then
80
echo "Tag '$RELEASE_TAG' already exists. No action needed."
81
echo "create_tag=false" >> "$GITHUB_OUTPUT"
0 commit comments