We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0e3255a commit a4c6d42Copy full SHA for a4c6d42
1 file changed
.github/main.yml
@@ -0,0 +1,30 @@
1
+name: Deploy
2
+
3
+# on:
4
+# push:
5
+# tags:
6
+# - "*"
7
+on:
8
+ push:
9
+ branches: [master]
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - uses: actions/setup-node@v2
17
+ with:
18
+ node-version: '14'
19
20
+ - name: Install
21
+ run: npm install -g vsce && npm install
22
23
+ - name: Build
24
+ run: npm ci
25
26
+ - name: Prepublish
27
+ run: npm run vscode:prepublish
28
29
+ - name: Deploy
30
+ run: vsce publish -p $VS_TOKEN
0 commit comments