Auto update keybindings from vscode v1.101.2 #65
Workflow file for this run
This file contains hidden or 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: Release extension to marketplace | |
on: | |
pull_request: | |
types: | |
- closed | |
workflow_dispatch: | |
inputs: {} | |
jobs: | |
release: | |
if: github.event.pull_request.merged == true || github.event_name == 'workflow_dispatch' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Publish | |
run: | | |
npm install -g @vscode/vsce ovsx | |
vsce publish -p ${{ secrets.VSCE_PAT }} | |
ovsx publish -p ${{ secrets.OVSX_PAT }} |