Skip to content

Add setting to ignore file extensions; fix file watcher #14

Add setting to ignore file extensions; fix file watcher

Add setting to ignore file extensions; fix file watcher #14

Workflow file for this run

name: Publish Extension
on:
push:
branches:
- main
release:
types:
- created
jobs:
build:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm install
publish:
needs: build
runs-on: ubuntu-latest
if: success() && github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm install
- run: npm install -g @vscode/vsce
- run: vsce publish -p ${{ secrets.VSCE_PAT }}