Updated GitHub Action to also build NPM
This commit is contained in:
parent
82bcd0c6ea
commit
2d89c9f6d3
|
@ -15,7 +15,11 @@ jobs:
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2
|
||||||
with:
|
with:
|
||||||
path: ${{ env.APP_NAME }}
|
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
|
run: cd ${{ env.APP_NAME }} && make appstore
|
||||||
- name: Upload app tarball to release
|
- name: Upload app tarball to release
|
||||||
uses: svenstaro/upload-release-action@v2
|
uses: svenstaro/upload-release-action@v2
|
||||||
|
|
Loading…
Reference in New Issue