-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8cd7581
commit 1fa45df
Showing
2 changed files
with
42 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: Create tag and release - test | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'CHANGELOG.rst' | ||
|
||
jobs: | ||
check_version: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Check version in changelog | ||
run: bash ./tag-from-pipeline.sh verify_changelog_version | ||
|
||
create_tag_and_release: | ||
needs: check_version | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- name: Create new tag and release | ||
run: bash ./tag-from-pipeline.sh create_new_tag | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
# GitHub works so that events ('release' event in this case) triggered while using the GITHUB_TOKEN will not create a | ||
# new workflow run. This means the publishing workflow will not be triggered even though a new release is successfully | ||
# created by the above job create_tag_and_release. Here we trigger the said workflow manually. | ||
trigger_publishing: | ||
needs: create_tag_and_release | ||
uses: ./.github/workflows/publish.yml |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters