23 строки
431 B
YAML
23 строки
431 B
YAML
|
name: Release
|
||
|
|
||
|
on:
|
||
|
release:
|
||
|
types:
|
||
|
- created
|
||
|
|
||
|
jobs:
|
||
|
Release:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v2
|
||
|
- name: Install Node.js
|
||
|
uses: actions/setup-node@v1
|
||
|
with:
|
||
|
node-version: 14.x
|
||
|
- run: npm install
|
||
|
- name: Publish to VS Marketplace
|
||
|
run: npx vsce publish
|
||
|
env:
|
||
|
VSCE_PAT: ${{ secrets.VSCE_PAT }}
|