-
-
Notifications
You must be signed in to change notification settings - Fork 119
46 lines (36 loc) · 1.17 KB
/
github-actions-vscode-extension.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
name: VS Code Extension
on: [push, pull_request]
jobs:
vscode-extension:
name: VS Code Extension
runs-on: ubuntu-latest
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4
- name: 🏗 Set up NodeJS
uses: actions/[email protected]
with:
node-version: "18"
- name: 🏗 Install NodeJS packages
run: npm install
- name: 🚀 Run Linter
run: npm run lint
- name: 🚀 Build Schema
run: npm run schema
- name: 🚀 Run Compile
run: npm run compile
- name: 🚀 VSCode Marketplace Publish
if: success() && github.ref == 'refs/heads/master'
run: |
npm install -g @vscode/vsce
vsce publish -p $VSCE_TOKEN
vsce package -o vscode-home-assistant.vsix
env:
VSCE_TOKEN: ${{ secrets.VSCE_TOKEN }}
- name: 🚀 Open VSX Publish
uses: HaaLeo/publish-vscode-extension@v1
if: success() && github.ref == 'refs/heads/master'
with:
pat: ${{ secrets.OPEN_VSX_TOKEN }}
extensionFile: vscode-home-assistant.vsix
registryUrl: https://open-vsx.org