vsc-material-theme/.github/workflows/release.yml

24 lines
422 B
YAML
Raw Normal View History

2020-09-05 08:49:50 +02:00
name: Release Extension
on:
push:
branches:
- master
tags:
- release
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- run:
2020-09-05 08:57:17 +02:00
- npm install
- npm version minor
- npm build
2020-09-05 08:49:50 +02:00
- uses: lannonbr/vsce-action@master
with:
args: "publish -p $VSCE_TOKEN"
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}