We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d19b1ad commit a0dddbeCopy full SHA for a0dddbe
.github/workflows/bump-version.yml
@@ -10,6 +10,9 @@ jobs:
10
if: "!startsWith(github.event.head_commit.message, 'bump:')"
11
runs-on: ubuntu-latest
12
name: "Bump version and create changelog with commitizen"
13
+ permissions:
14
+ contents: write
15
+ packages: write
16
steps:
17
- name: Check out
18
uses: actions/checkout@v3
@@ -22,9 +25,8 @@ jobs:
22
25
github_token: ${{ secrets.GITHUB_TOKEN }}
23
26
changelog_increment_filename: body.md
24
27
- name: Release
- uses: softprops/action-gh-release@v1
28
+ uses: softprops/action-gh-release@v2
29
with:
30
body_path: "body.md"
31
tag_name: ${{ env.REVISION }}
- env:
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
32
+ token: ${{ secrets.GITHUB_TOKEN }}
0 commit comments