Skip to content

Commit

Permalink
fix: tag_namE -> tag_name
Browse files Browse the repository at this point in the history
  • Loading branch information
pgollucci committed Nov 16, 2024
1 parent f40120f commit f7bfae8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ runs:
run: |
set -x
tag_name=$(cat dist/releasetag.txt)
if gh release view "$tag_nameE" -R "$GITHUB_REPOSITORY" > /dev/null 2>&1; then
if gh release view "$tag_name" -R "$GITHUB_REPOSITORY" > /dev/null 2>&1; then
echo "Release with tag $tag_name already exists. Skipping release creation."
else
gh release create "$tag_name" -R "$GITHUB_REPOSITORY" -F dist/changelog.md -t "$tag_name" --target "$GITHUB_REF"
Expand Down

0 comments on commit f7bfae8

Please sign in to comment.