Skip to content

Release v2.0.10

Release v2.0.10 #63

Workflow file for this run

name: Publish extension
on:
push:
tags:
- 'v*'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install node.js
uses: actions/setup-node@v3
with:
node-version: 21.x
- name: Install dependencies
run: cd extension && npm install
- name: Copy README so it gets published
run: cp README.md extension
- name: Copy LICENSE so it gets published
run: cp LICENSE.md extension
- name: Publish to Visual Studio Marketplace
run: cd extension && npm run publish
env:
VSCE_PAT: ${{ secrets.VS_MARKETPLACE_TOKEN }}