Skip to content

Commit 8518873

Browse files
authored
ci: fix secret availability for publish workflow (#921)
1 parent 2e6009c commit 8518873

2 files changed

Lines changed: 5 additions & 0 deletions

File tree

.github/workflows/publish-extension.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: "🚀 Publish Extension"
22
on:
33
workflow_call:
4+
secrets:
5+
VSCE_PAT:
6+
required: true
47
permissions:
58
contents: read
69
jobs:

.github/workflows/release-please.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ jobs:
3131
if: ${{ needs.release_please.outputs.extension_release_created }}
3232
needs: [release_please]
3333
uses: ./.github/workflows/publish-extension.yml
34+
secrets:
35+
VSCE_PAT: ${{ secrets.VSCE_PAT }}
3436
publish_lib:
3537
name: "Publish Lib"
3638
if: ${{ needs.release_please.outputs.lib_release_created }}

0 commit comments

Comments
 (0)