diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 446b4d2..4dd280e 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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: | @@ -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 }}