Skip to content

Commit c6afb82

Browse files
committed
explicitly list out secrets
1 parent 0d259c0 commit c6afb82

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,9 @@ on:
1010
required: false
1111
default: false
1212
type: boolean
13-
secrets: inherit
13+
secrets:
14+
NGROK_AUTHTOKEN:
15+
required: true
1416
push:
1517
branches:
1618
- '**'

.github/workflows/publish.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,8 @@ jobs:
77
ci:
88
name: Runs CI
99
uses: ./.github/workflows/ci.yml
10-
secrets: inherit
10+
secrets:
11+
NGROK_AUTHTOKEN: ${{ secrets.NGROK_AUTHTOKEN }}
1112
permissions:
1213
contents: write
1314
with:

0 commit comments

Comments
 (0)