Skip to content

Commit 76b8574

Browse files
committedJul 5, 2022
ci: Pass PAT to action directly
1 parent a83815c commit 76b8574

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎.github/workflows/release-please.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
name: release-please
2+
23
on:
34
push:
45
branches:
@@ -9,10 +10,9 @@ jobs:
910
runs-on: ubuntu-latest
1011
steps:
1112
- uses: google-github-actions/release-please-action@v3
12-
env:
13+
with:
1314
# Use a personal access token to trigger the "publish-release" workflow
1415
# when a new tag is created.
1516
# See: https://docs.github.com/en/actions/using-workflows/triggering-a-workflow#triggering-a-workflow-from-a-workflow
16-
GITHUB_TOKEN: ${{ secrets.ACTIONS_TOKEN }}
17-
with:
17+
token: ${{ secrets.ACTIONS_TOKEN }}
1818
release-type: rust

0 commit comments

Comments
 (0)
Please sign in to comment.