From 61e6516c3bb06df57653eab6bad4870b593f28d6 Mon Sep 17 00:00:00 2001 From: Liam Barry Allan Date: Thu, 17 Mar 2022 16:53:10 -0400 Subject: [PATCH] CI process --- .github/workflows/ci.yaml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .github/workflows/ci.yaml diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml new file mode 100644 index 00000000..c7e7cdf2 --- /dev/null +++ b/.github/workflows/ci.yaml @@ -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 \ No newline at end of file