Skip to content

chore: release v0.9.0 #5

chore: release v0.9.0

chore: release v0.9.0 #5

Workflow file for this run

name: release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v3
with:
node-version-file: ".nvmrc"
cache: npm
registry-url: https://registry.npmjs.org
- run: corepack enable
- run: npm install
- run: npm run publish
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
OVSX_PAT: ${{ secrets.OVSX_PAT }}