Updated GitHub Action to also build NPM

This commit is contained in:
Kalle Fagerberg 2022-07-17 20:14:36 +02:00 committed by thrillfall
parent 82bcd0c6ea
commit 2d89c9f6d3
1 changed files with 5 additions and 1 deletions

View File

@ -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