We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d1adf2a commit b67d62eCopy full SHA for b67d62e
.github/workflows/deploy-preview.yaml
@@ -14,7 +14,7 @@ on:
14
type: string
15
description: "create or delete preview"
16
secrets:
17
- GITHUB_TOKEN:
+ TOKEN:
18
required: true
19
20
jobs:
@@ -25,7 +25,7 @@ jobs:
25
- name: Checkout repository
26
uses: actions/checkout@v4
27
with:
28
- token: ${{ secrets.GITHUB_TOKEN }}
+ token: ${{ secrets.TOKEN }}
29
ref: gh-pages
30
path: gh-pages
31
.github/workflows/test-deploy.yaml
@@ -46,4 +46,4 @@ jobs:
46
commit_sha: ${{ github.sha }}
47
action: ${{ github.event.action == 'closed' && 'delete' || 'create' }}
48
49
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ TOKEN: ${{ secrets.GITHUB_TOKEN }}
0 commit comments