From ec859a4ff829069dc538049745b8425c340d1ee4 Mon Sep 17 00:00:00 2001 From: dutchie031 Date: Thu, 1 May 2025 22:24:25 +0200 Subject: [PATCH] updated order so the release notes were created before tagging --- .github/workflows/release.yml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 52ebc75..361ddd1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -73,13 +73,6 @@ jobs: exit 1 fi - - name: Apply Tag to Current Commit - run: | - git config user.name "github-actions" - git config user.email "github-actions@github.com" - git tag ${{ steps.calculate_tag.outputs.new_tag }} - git push origin ${{ steps.calculate_tag.outputs.new_tag }} - - name: Generate Release Notes id: generate_release_notes run: | @@ -92,6 +85,13 @@ jobs: cat release_notes.txt shell: bash + - name: Apply Tag to Current Commit + run: | + git config user.name "github-actions" + git config user.email "github-actions@github.com" + git tag ${{ steps.calculate_tag.outputs.new_tag }} + git push origin ${{ steps.calculate_tag.outputs.new_tag }} + - name: Create GitHub Release uses: actions/create-release@v1 id: create_release