Skip to content

Merge pull request #12 from peetzweg/11-adding-multiple-custom-chains #8

Merge pull request #12 from peetzweg/11-adding-multiple-custom-chains

Merge pull request #12 from peetzweg/11-adding-multiple-custom-chains #8

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 }}