Implementation of custom scripts

This commit is contained in:
Elio Struyf
2021-05-04 11:28:26 +02:00
parent 6949288454
commit e0ca17ec65
14 changed files with 153 additions and 5 deletions
+28
View File
@@ -0,0 +1,28 @@
name: Release
on:
release:
types:
- published
workflow_dispatch:
jobs:
build:
name: "Build and release"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 14
registry-url: https://registry.npmjs.org/
- name: Install the dependencies
run: npm i
- name: Install vsce
run: npm i -g vsce
- name: Publish
run: vsce publish -p ${{ secrets.VSCE_PAT }}