From 54db882e784de5258c65d58f8ec72564924e5d2e Mon Sep 17 00:00:00 2001 From: Miguel Pragosa Date: Fri, 4 Apr 2025 13:09:07 +0100 Subject: [PATCH] CP-2898 Make sure a GH release is created when a release is done --- .github/workflows/release.yaml | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 30c0ce9a..50da83f2 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -58,14 +58,9 @@ jobs: runs-on: ubuntu-latest needs: deployment steps: - - name: Checkout latest code - uses: actions/checkout@v4 - - - name: Add tag and push to the repository - run: | - git config user.name "API Team" - git config user.email "api-team@thousandeyes.com" - - git tag ${{ inputs.releaseVersion }} - git push origin ${{ inputs.releaseVersion }} - + - name: Create GitHub Release + uses: softprops/action-gh-release@v2 + with: + tag_name: ${{ inputs.releaseVersion }} + prerelease: false + draft: false