-
Notifications
You must be signed in to change notification settings - Fork 29
43 lines (38 loc) · 1 KB
/
ci.yaml
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
name: Build VS Code Extension
on:
push:
branches:
- main
paths:
- 'apps/vscode/**'
pull_request:
branches:
- main
paths:
- 'apps/vscode/**'
workflow_dispatch:
jobs:
package-extension:
runs-on: ubuntu-latest
outputs:
vsixPath: ${{ steps.package_extension.outputs.vsixPath }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: latest
- run: yarn install --immutable --immutable-cache --check-cache
- name: Package extension
uses: HaaLeo/publish-vscode-extension@v1
id: package_extension
with:
pat: not-a-real-pat
yarn: true
dryRun: true
preRelease: true
packagePath: apps/vscode
- name: Upload extension vsix file as a workflow artifact
uses: actions/upload-artifact@v4
with:
name: quarto-vscode-${{ github.sha }}
path: ${{ steps.package_extension.outputs.vsixPath }}