Skip to content

Commit 73350bd

Browse files
committed
fix: trying to correct python-app.yml missing token error.
1 parent 3e791fb commit 73350bd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/python-app.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,13 +26,13 @@ jobs:
2626
id: changelog
2727
uses: TriPSs/[email protected]
2828
with:
29-
github-token: ${{ secrets.CHANGELOG_RELEASE }}
29+
github-token: ${{ secrets.GITHUB_TOKEN }}
3030

3131
- name: Create Release
3232
uses: actions/create-release@v1
3333
if: ${{ steps.changelog.outputs.skipped == 'false' }}
3434
env:
35-
GITHUB_TOKEN: ${{ secrets.CHANGELOG_RELEASE }}
35+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3636
with:
3737
tag_name: ${{ steps.changelog.outputs.tag }}
3838
release_name: ${{ steps.changelog.outputs.tag }}

0 commit comments

Comments
 (0)