Skip to content

chore: Update version #136

chore: Update version

chore: Update version #136

Workflow file for this run

name: Release
on:
push:
branches:
- main
workflow_dispatch: # Put here!!
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version: 20
registry-url: https://registry.npmjs.org/
- name: Install the dependencies
run: npm i
- name: Install vsce
run: npm i -g vsce
- name: Publish
run: vsce publish -p ${{ secrets.VSCE_TOKEN }}