vsc-material-theme/.github/workflows/release.yml
Workflow config file is invalid. Please check your config file: yaml: unmarshal errors: line 16: cannot unmarshal !!seq into string
2020-09-05 08:57:17 +02:00

23 lines
422 B
YAML

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