Skip to content

Update README.md

Update README.md #8

Workflow file for this run

name: Generate vsix
on:
push:
branches: [ "master" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20.x
uses: actions/setup-node@v4
with:
node-version: 20.0
cache: 'npm'
- run: npm ci
- name: install vsce
run: npm install -g @vscode/vsce
- name: build vsix
run: vsce package
- name: upload vsix
uses: actions/upload-artifact@v4
with:
name: gearbar-artifact
path: ./gearbar*.vsix