Skip to content

Commit c732dc2

Browse files
committed
ci: have PSR use GITHUB_TOKEN so it doesn't re-trigger workflows
1 parent 329c4fc commit c732dc2

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/cd-release.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ jobs:
9797
# Adjust tag with desired version if applicable.
9898
uses: python-semantic-release/python-semantic-release@v10.4.1
9999
with:
100-
github_token: ${{ secrets.PYTHON_SEMANTIC_RELEASE_TOKEN }}
100+
github_token: ${{ secrets.GITHUB_TOKEN }}
101101
git_committer_name: "github-actions"
102102
git_committer_email: "actions@users.noreply.github.com"
103103

104104
- name: Publish | Upload to GitHub Release Assets
105105
uses: python-semantic-release/publish-action@v10.4.1
106106
if: steps.release.outputs.released == 'true'
107107
with:
108-
github_token: ${{ secrets.PYTHON_SEMANTIC_RELEASE_TOKEN }}
108+
github_token: ${{ secrets.GITHUB_TOKEN }}
109109
tag: ${{ steps.release.outputs.tag }}
110110

111111
- name: Upload | Distribution Artifacts

0 commit comments

Comments
 (0)