Skip to content

copies over demo.gif as well before publishing #10

copies over demo.gif as well before publishing

copies over demo.gif as well before publishing #10

Workflow file for this run

name: Publish Extension
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v2
with:
node-version: 16
cache: 'npm'
- name: Install `packages`
run: npm install
- name: Publish
run: npm run vsc:publish
env:
VSCE_PAT: ${{ secrets.PEETZWEG_AZURE_KEY }}