Skip to content

Commit bcb561d

Browse files
authored
Use GITHUB_TOKEN instead of ACTIVE_TOKEN in deploy-to-artifacts.yml
1 parent 029cabf commit bcb561d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/deploy-to-artifacts.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- id: prep
3131
uses: actions/github-script@v6
3232
with:
33-
github-token: ${{ secrets.ACTIVE_TOKEN }}
33+
github-token: ${{ secrets.GITHUB_TOKEN }}
3434
script: |
3535
core.setOutput('sha', context.payload.inputs.merged_sha || context.payload.inputs.sha);
3636
- uses: actions/checkout@v3
@@ -102,7 +102,7 @@ jobs:
102102
name: changes
103103
- uses: actions/github-script@v6
104104
with:
105-
github-token: ${{secrets.ACTIVE_TOKEN}}
105+
github-token: ${{secrets.GITHUB_TOKEN}}
106106
script: |
107107
function getInputs () {
108108
const { sha, merged_sha } = context.payload.inputs;

0 commit comments

Comments
 (0)