Skip to content

Commit 8f70009

Browse files
committed
fix: pass through secret from release to publish
1 parent 922dc48 commit 8f70009

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.github/workflows/publish.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ on:
99
tag_name:
1010
required: true
1111
type: string
12+
secrets:
13+
publish_token:
14+
required: true
1215
# In case of problems, let release engineers retry by manually dispatching
1316
# the workflow from the GitHub UI
1417
workflow_dispatch:

.github/workflows/release.yml

+2
Original file line numberDiff line numberDiff line change
@@ -37,3 +37,5 @@ jobs:
3737
uses: ./.github/workflows/publish.yaml
3838
with:
3939
tag_name: ${{ inputs.tag_name }}
40+
secrets:
41+
publish_token: ${{ secrets.PUBLISH_TOKEN }}

0 commit comments

Comments
 (0)