Skip to content

Commit c66adaf

Browse files
committed
Pass secrets from schedule workflow
1 parent 615a944 commit c66adaf

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

.github/workflows/build-and-publish-bindings.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ on:
1414
default: 'v0.19.1.1'
1515
required: true
1616
type: string
17-
17+
secrets:
18+
PKG_PUBLISHING_AUTH_TOKEN:
19+
required: true
1820
jobs:
1921
build:
2022
runs-on: ubuntu-latest

.github/workflows/scheduled-release-check.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,8 @@ jobs:
4343
if: ${{ needs.check.outputs.needs_build == 'true' }}
4444
with:
4545
wgpuVersion: ${{ needs.check.outputs.release }}
46+
secrets:
47+
PKG_PUBLISHING_AUTH_TOKEN: ${{ secrets.PKG_PUBLISHING_AUTH_TOKEN }}
4648

4749
natives:
4850
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)