Skip to content

Commit

Permalink
Add workflow to publish vscode without a build
Browse files Browse the repository at this point in the history
  • Loading branch information
JamyGolden committed Sep 1, 2024
1 parent 0c57070 commit 3a5f8cb
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/publish-without-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: "Publish to marketplace without build"
on:
workflow_dispatch:

jobs:
run:
runs-on: "ubuntu-latest"
steps:
- name: "Publish to VSCode Marketplace"
uses: "lannonbr/vsce-action@510e61c5e9e6f33c0418ec5ff5fd36b1ced61e85" # v4.0.0
with:
args: "publish -p $VSCE_TOKEN"
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}

0 comments on commit 3a5f8cb

Please sign in to comment.