From d8d274f98db01c27bad87b000f7f1f04e05c35c9 Mon Sep 17 00:00:00 2001 From: Johann Wagner Date: Wed, 1 Dec 2021 14:25:37 +0100 Subject: [PATCH] Added workflow for CI builds --- .github/workflows/build.yaml | 49 ++++++++++++++++++++++++++++++++++++ 1 file changed, 49 insertions(+) create mode 100644 .github/workflows/build.yaml diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml new file mode 100644 index 0000000..c368df3 --- /dev/null +++ b/.github/workflows/build.yaml @@ -0,0 +1,49 @@ +name: Make a release + +on: + push: + tags: + - v*.*.* + +jobs: + build: + + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [16.x] + + steps: + - name: Checkout repository + uses: actions/checkout@v2 + + - name: Set up Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 + with: + node-version: ${{ matrix.node-version }} + + - name: Install dependencies + run: npm ci + + - name: Build + run: npm run make + + - name: Remove Settings + run: rm -rf build/*.json + + - name: Compress Artifacts + run: tar -cvf apps-$GITHUB_REF_NAME.tar build + + - name: Upload Artifact + uses: actions/upload-artifact@v2 + with: + name: apps + path: apps-$GITHUB_REF_NAME.tar + + - name: Upload Artifacts to release page + uses: softprops/action-gh-release@v1 + with: + files: apps-$GITHUB_REF_NAME.tar + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file