Skip to content

Commit

Permalink
Setup build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
JulindM committed Nov 7, 2024
1 parent a8d0c37 commit 66eff8c
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: Build

on:
workflow_dispatch:

jobs:
build_linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm install -g @vscode/vsce
- run: npm install
- run: vsce package
- uses: actions/upload-artifact@v4
with:
path: ./*.vsix
overwrite: true

0 comments on commit 66eff8c

Please sign in to comment.