Skip to content

Commit

Permalink
Add manual release action
Browse files Browse the repository at this point in the history
  • Loading branch information
dalance committed Jun 24, 2024
1 parent 9a8c9ff commit fda6fab
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/manual_release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Manual Release

on:
workflow_run:

jobs:
vsce:
needs: build
runs-on: ubuntu-latest
defaults:
run:
working-directory: support/vscode
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16.x
- run: npm install
- run: make publish
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}

0 comments on commit fda6fab

Please sign in to comment.