Skip to content

Publish extension when tagged with a new version #16

Publish extension when tagged with a new version

Publish extension when tagged with a new version #16

Workflow file for this run

name: Publish extension when tagged with a new version
on:
push:
tags:
- 'v*' # Push events to matching v*, i.e. v1.3.1
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm install
- uses: lannonbr/vsce-action@3.0.0
with:
args: "publish -p $VSCE_TOKEN"
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}