Skip to content

Commit ac06ed0

Browse files
committed
Build on release
1 parent 963eac8 commit ac06ed0

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/build.yaml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
on:
2+
release:
3+
types: [created]
4+
5+
jobs:
6+
release:
7+
name: Release and publish
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v2
11+
with:
12+
fetch-depth: 1
13+
- run: npm install
14+
15+
- run: npm install -g vsce
16+
- name: Create build
17+
run: npm run package
18+
19+
- name: Upload build
20+
uses: actions/upload-artifact@v2
21+
with:
22+
name: code-for-ibmi-pr-build
23+
path: ./*.vsix
24+

0 commit comments

Comments
 (0)