Skip to content

Commit

Permalink
CI process
Browse files Browse the repository at this point in the history
  • Loading branch information
worksofliam committed Mar 17, 2022
1 parent feadf62 commit 61e6516
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
on:
release:
types: [created]

jobs:
release:
name: Release and publish
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 1
- run: npm install

- run: npm install -g vsce
- name: Create build
run: npm run package

- name: Upload build
uses: actions/upload-artifact@v2
with:
name: code-for-ibmi-pr-build
path: ./*.vsix

0 comments on commit 61e6516

Please sign in to comment.