Skip to content

Commit

Permalink
(chore) Init GH actions
Browse files Browse the repository at this point in the history
  • Loading branch information
Hugoch committed Aug 23, 2023
1 parent 9b521ad commit 1038ebc
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Build release
on: [push]
jobs:
package:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: npm i -g vsce
name: Install vsce
- run: npm install
name: Install dependencies
- run: "vsce package --baseContentUrl=https://github.com/hugoch/vscode-starcoder --baseImagesUrl=https://github.com/hugoch/vscode-starcoder"
name: Package extension
- uses: actions/upload-artifact@v3
name: Upload artifact
with:
name: starcoder-${{ github.sha }}
path: "*.vsix"

0 comments on commit 1038ebc

Please sign in to comment.