Skip to content

Bump semver from 5.7.1 to 5.7.2 #8

Bump semver from 5.7.1 to 5.7.2

Bump semver from 5.7.1 to 5.7.2 #8

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Extension Publish
# Controls when the action will run.
on:
# Triggers the workflow on push or pull request events but only for the master branch
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run: npm install
- uses: lannonbr/vsce-action@master
with:
args: "publish -p $VSCE_TOKEN"
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}