From 2d89c9f6d3f637e96296dc9a7e64c23fab45ab11 Mon Sep 17 00:00:00 2001 From: Kalle Fagerberg Date: Sun, 17 Jul 2022 20:14:36 +0200 Subject: [PATCH] Updated GitHub Action to also build NPM --- .github/workflows/build_release.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_release.yml b/.github/workflows/build_release.yml index a7b5522..365c8e6 100644 --- a/.github/workflows/build_release.yml +++ b/.github/workflows/build_release.yml @@ -15,7 +15,11 @@ jobs: uses: actions/checkout@v2 with: path: ${{ env.APP_NAME }} - - name: Run build + - name: Install NPM packages + run: cd ${{ env.APP_NAME }} && make npm-init + - name: Build JS + run: cd ${{ env.APP_NAME }} && make build-js-production + - name: Create release tarball run: cd ${{ env.APP_NAME }} && make appstore - name: Upload app tarball to release uses: svenstaro/upload-release-action@v2