Skip to content

update package.json

update package.json #9

Workflow file for this run

name: Ghost-generated pipeline
on:
push:
tags:
- '*'
jobs:
publish-extension:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install the dependencies
run: npm i
- name: Install VSCE
run: npm install @vscode/vsce --save-dev
- name: Publish VSIX to marketplace
run: npm run deploy
env:
VSCE_PAT: ${{ secrets.VSCE_PAT }}