Manual Release #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Manual Release | ||
on: | ||
workflow_dispatch: | ||
jobs: | ||
vsce: | ||
Check failure on line 7 in .github/workflows/manual_release.yml GitHub Actions / Manual ReleaseInvalid workflow file
|
||
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 }} |