We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2e529ad commit dc4d505Copy full SHA for dc4d505
1 file changed
.github/workflows/release.yaml
@@ -3,7 +3,7 @@
3
name: Release [Manual]
4
on: workflow_dispatch
5
permissions:
6
- contents: write
+ contents: read,write
7
id-token: write
8
jobs:
9
Release:
@@ -14,7 +14,7 @@ jobs:
14
# fetch-depth is necessary to get all tags
15
# otherwise lerna can't detect the changes and will end up bumping the versions for all packages
16
fetch-depth: 0
17
- token: ${{ secrets.RELEASE_COMMIT_GH_PAT }}
+ token: ${{ secrets.GITHUB_TOKEN }}
18
- name: Setup Node
19
uses: actions/setup-node@v3
20
with:
@@ -41,5 +41,5 @@ jobs:
41
npm config set provenance true
42
HUSKY=0 npx semantic-release
43
env:
44
- GH_TOKEN: ${{ secrets.RELEASE_COMMIT_GH_PAT }}
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments