diff --git a/.github/workflows/shared_action_release.yaml b/.github/workflows/shared_action_release.yaml index a64cd62..22b8790 100644 --- a/.github/workflows/shared_action_release.yaml +++ b/.github/workflows/shared_action_release.yaml @@ -103,10 +103,7 @@ jobs: -H "Authorization: Bearer ${{secrets.GITHUB_TOKEN}}" \ -H "X-GitHub-Api-Version: 2022-11-28" \ https://api.github.com/repos/${{github.repository}}/releases \ - -d '{"tag_name":"${NEW_RELEASE_TAG}","name":"Release ${NEW_RELEASE_TAG}","body":"Release ${NEW_RELEASE_TAG}","draft":false,"prerelease":false,"generate_release_notes":false}' - env: - NEW_RELEASE_TAG: ${{steps.incrementedTagVersion.outputs.NEW_RELEASE_TAG}} - + -d '{"tag_name":"${{steps.incrementedTagVersion.outputs.NEW_RELEASE_TAG}}","name":"Release ${{steps.incrementedTagVersion.outputs.NEW_RELEASE_TAG}}","body":"Release ${{steps.incrementedTagVersion.outputs.NEW_RELEASE_TAG}}","draft":false,"prerelease":false,"generate_release_notes":false}'