Skip to content

Auto update keybindings from vscode v1.101.2 #64

Auto update keybindings from vscode v1.101.2

Auto update keybindings from vscode v1.101.2 #64

Workflow file for this run

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 }}