Skip to content

Commit

Permalink
Merge pull request #26 from darionhaase/main
Browse files Browse the repository at this point in the history
[CI] Proper secret passing between workflows
  • Loading branch information
Philipp15b authored May 27, 2024
2 parents 8577e53 + c8c3a36 commit fa95480
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
7 changes: 7 additions & 0 deletions .github/workflows/build-vsix-marketplaces.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ on:
version:
required: true
type: string
secrets:
VSCE_PAT:
description: "Token for publishing to the VSCode Marketplace"
required: true
OPEN_VSX_PAT:
description: "Token for publishing to the Open VSX Registry"
required: true

env:
EXTENSION_DIRECTORY: ./vscode-ext
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/on_tagged_release_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,6 @@ jobs:
with:
git_ref: ${{ github.ref_name }}
version: ${{ github.ref_name }}
secrets:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
OPEN_VSX_PAT: ${{ secrets.OPEN_VSX_PAT }}

0 comments on commit fa95480

Please sign in to comment.