Skip to content

Add manual release action #1

Add manual release action

Add manual release action #1

name: Manual Release

Check failure on line 1 in .github/workflows/manual_release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/manual_release.yml

Invalid workflow file

`on.workflow_run` does not reference any workflows. See https://docs.github.com/actions/learn-github-actions/events-that-trigger-workflows#workflow_run for more information
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 }}