From e033859992c59e37ba57b3bdf998d6f01f815a55 Mon Sep 17 00:00:00 2001 From: OmOmofonmwan Date: Mon, 25 Nov 2024 09:49:33 -0600 Subject: [PATCH] Fixed typo --- .github/workflows/shared_action_release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/shared_action_release.yaml b/.github/workflows/shared_action_release.yaml index a84b3a1..b285eff 100644 --- a/.github/workflows/shared_action_release.yaml +++ b/.github/workflows/shared_action_release.yaml @@ -103,7 +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}' + -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}}