Skip to content

chore(deps): bump glob from 10.3.10 to 10.5.0 (#316) #95

chore(deps): bump glob from 10.3.10 to 10.5.0 (#316)

chore(deps): bump glob from 10.3.10 to 10.5.0 (#316) #95

Workflow file for this run

name: Publish Extension
permissions:
contents: read
on:
push:
branches: [master]
jobs:
publish:
if: startsWith(github.ref, 'refs/tags/v')
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
ref: ${{ github.ref }}
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: |
npm install
cd views/chat-view
npm install
- name: Install vsce
run: npm install -g vsce
- name: Publish
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}
run: vsce publish -p $VSCE_PAT