updated order so the release notes were created before tagging

This commit is contained in:
2025-05-01 22:24:25 +02:00
parent 889c04af49
commit ec859a4ff8
+7 -7
View File
@@ -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