Skip to content

Commit a42ff19

Browse files
committed
fix: deployment move from manual to official semantic release actions
1 parent 37b0c87 commit a42ff19

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
uses: actions/checkout@v5
2424
with:
2525
ref: ${{ github.ref }}
26-
token: ${{ secrets.GH_TOKEN }}
26+
token: ${{ secrets.GITHUB_TOKEN }}
2727
fetch-depth: 0
2828

2929
- name: Configure Git user
@@ -49,7 +49,7 @@ jobs:
4949
id: release
5050
uses: python-semantic-release/python-semantic-release@v10.4.1
5151
with:
52-
github_token: ${{ secrets.GH_TOKEN }}
52+
github_token: ${{ secrets.GITHUB_TOKEN }}
5353
git_committer_name: "github-actions"
5454
git_committer_email: "actions@users.noreply.github.com"
5555
changelog: true
@@ -59,7 +59,7 @@ jobs:
5959
uses: python-semantic-release/publish-action@v10.4.1
6060
if: steps.release.outputs.released == 'true'
6161
with:
62-
github_token: ${{ secrets.GH_TOKEN }}
62+
github_token: ${{ secrets.GITHUB_TOKEN }}
6363
tag: ${{ steps.release.outputs.tag }}
6464

6565
- name: Upload | Distribution Artifacts

0 commit comments

Comments
 (0)