We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b521ad commit 1038ebcCopy full SHA for 1038ebc
.github/workflows/main.yaml
@@ -0,0 +1,21 @@
1
+name: Build release
2
+on: [push]
3
+jobs:
4
+ package:
5
+ runs-on: ubuntu-latest
6
+ steps:
7
+ - uses: actions/checkout@v3
8
+ - uses: actions/setup-node@v3
9
+ with:
10
+ node-version: 18
11
+ - run: npm i -g vsce
12
+ name: Install vsce
13
+ - run: npm install
14
+ name: Install dependencies
15
+ - run: "vsce package --baseContentUrl=https://github.com/hugoch/vscode-starcoder --baseImagesUrl=https://github.com/hugoch/vscode-starcoder"
16
+ name: Package extension
17
+ - uses: actions/upload-artifact@v3
18
+ name: Upload artifact
19
20
+ name: starcoder-${{ github.sha }}
21
+ path: "*.vsix"
0 commit comments