Skip to content

docs(changeset): fix: hideMousetrail option resetting when focus is l… #27

docs(changeset): fix: hideMousetrail option resetting when focus is l…

docs(changeset): fix: hideMousetrail option resetting when focus is l… #27

Workflow file for this run

name: Publish
# publish only when package json has changed - assuming version upgrade
on:
push:
branches: [main]
paths: "package.json"
jobs:
publish:
runs-on: ubuntu-latest
permissions:
packages: write
contents: write
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/setup-node@v3
with:
node-version: 20
- run: npm i && npm test && npm i -g @vscode/vsce
- run: npm run deploy
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
TOKEN: ${{ secrets.GITHUB_TOKEN }}
OWNER: ${{ github.event.repository.owner.login }}
REPO: ${{ github.event.repository.name }}