Skip to content

Commit e662f6c

Browse files
fix: Configure GitHub token to create releases
1 parent 8effe62 commit e662f6c

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/delivery.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
- name: Checkout Source Code
2020
uses: actions/checkout@v4
2121
with:
22-
token: ${{ secrets.GITHUB_TOKEN }}
22+
token: ${{ secrets.GH_TOKEN }}
2323

2424
- name: Install Poetry
2525
run: pipx install poetry
@@ -69,7 +69,7 @@ jobs:
6969
7070
- name: Create GitHub Release
7171
env:
72-
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
72+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
7373
BUMP_TYPE: ${{ startsWith(env.BRANCH_NAME, 'bug') || startsWith(env.BRANCH_NAME, 'fix') && 'patch' || 'minor' }}
7474
run: |
7575
package_version="$(poetry version $BUMP_TYPE --short)"

0 commit comments

Comments
 (0)