We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8effe62 commit e662f6cCopy full SHA for e662f6c
1 file changed
.github/workflows/delivery.yml
@@ -19,7 +19,7 @@ jobs:
19
- name: Checkout Source Code
20
uses: actions/checkout@v4
21
with:
22
- token: ${{ secrets.GITHUB_TOKEN }}
+ token: ${{ secrets.GH_TOKEN }}
23
24
- name: Install Poetry
25
run: pipx install poetry
@@ -69,7 +69,7 @@ jobs:
69
70
- name: Create GitHub Release
71
env:
72
- GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ GH_TOKEN: ${{ secrets.GH_TOKEN }}
73
BUMP_TYPE: ${{ startsWith(env.BRANCH_NAME, 'bug') || startsWith(env.BRANCH_NAME, 'fix') && 'patch' || 'minor' }}
74
run: |
75
package_version="$(poetry version $BUMP_TYPE --short)"
0 commit comments