-
Notifications
You must be signed in to change notification settings - Fork 1
36 lines (33 loc) · 1 KB
/
python-release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
name: Bump Version and Create Release
on:
push:
branches:
- main
concurrency:
group: bump-and-release-${{ github.ref }}
cancel-in-progress: true
jobs:
bump-and-release:
if: "!startsWith(github.event.head_commit.message, 'bump:')"
runs-on: ubuntu-latest
name: "Bump version and create changelog with commitizen"
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
token: "${{ secrets.VERSION_BUMP_TAG_TOKEN }}"
- name: Create bump and changelog
id: cz
uses: commitizen-tools/[email protected]
with:
commit: true
push: true
github_token: ${{ secrets.VERSION_BUMP_TAG_TOKEN }}
changelog_increment_filename: "release-body.md"
- name: Create GitHub Release
uses: softprops/action-gh-release@v1
with:
body_path: "release-body.md"
tag_name: v${{ steps.cz.outputs.version }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}