Skip to content

Commit

Permalink
Move the necessary steps to release workflow
Browse files Browse the repository at this point in the history
araratthehero committed Jan 2, 2025
1 parent a2ac87c commit b7a2b99
Showing 1 changed file with 8 additions and 7 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -5,15 +5,16 @@ on:
workflow_dispatch:

jobs:
generate_release_notes:
name: Generate release notes
uses: ./.github/workflows/generate_release_notes.yml
update_release_notes:
name: Update release notes
uses: ./.github/workflows/update_release_notes.yml
secrets: inherit
with:
version-name: "9.9.9"
create_release_notes_pr:
name: Create release notes pr
uses: ./.github/workflows/create_release_notes_pr.yml
needs: generate_release_notes
publish_github_release:
name: Update release notes
uses: ./.github/workflows/publish_github_release.yml
secrets: inherit
needs: update_release_notes
with:
version-name: "9.9.9"

0 comments on commit b7a2b99

Please sign in to comment.