From 7bca118f3016f7e40c9b8b3e82fe4ff6cf69f656 Mon Sep 17 00:00:00 2001 From: OmOmofonmwan Date: Mon, 25 Nov 2024 09:52:33 -0600 Subject: [PATCH] Updated Release string --- .github/workflows/shared_action_release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/shared_action_release.yaml b/.github/workflows/shared_action_release.yaml index b285eff..6c90e0a 100644 --- a/.github/workflows/shared_action_release.yaml +++ b/.github/workflows/shared_action_release.yaml @@ -89,7 +89,7 @@ jobs: git remote set-url origin https://git:${{secrets.IKMDEVOPS_PAT_TOKEN}}@github.com/${{github.repository}}.git git pull -p git config user.name "ikmdevops" - git config user.email devops@ikm.dev + git config user.email "devops@ikm.dev git tag -a v$NEW_RELEASE_TAG -m"Release Version $NEW_RELEASE_TAG" git push origin v$NEW_RELEASE_TAG env: @@ -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}}