Skip to content

Commit

Permalink
fix: Correggi la creazione e il push del tag nel workflow di rilascio
Browse files Browse the repository at this point in the history
  • Loading branch information
d-beezee committed Dec 24, 2024
1 parent 6051778 commit 203255c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ jobs:
NEW_VERSION: ${{ steps.bump.outputs.NEW_VERSION }}
run: |
# Crea un tag con la nuova versione
git tag "v$NEW_VERSION"
git tag "$NEW_VERSION"
# Push del tag su GitHub
git push origin "v$NEW_VERSION"
git push origin "$NEW_VERSION"
- name: Create a zip of the repository
run: |
Expand All @@ -64,7 +64,7 @@ jobs:
- name: Create Release and Upload Asset
uses: softprops/action-gh-release@v1
with:
tag: ${{ steps.bump.outputs.NEW_VERSION }}
tag_name: ${{ steps.bump.outputs.NEW_VERSION }}
files: queen_of_hearts.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 203255c

Please sign in to comment.