mirror of
https://github.com/DJ2LS/FreeDATA
synced 2024-05-14 08:04:33 +00:00
Update build-project.yml
This commit is contained in:
parent
17e49c94b0
commit
5a0373e290
1 changed files with 25 additions and 1 deletions
26
.github/workflows/build-project.yml
vendored
26
.github/workflows/build-project.yml
vendored
|
@ -64,9 +64,33 @@ jobs:
|
||||||
path: ./tnc/dist/compressed/*
|
path: ./tnc/dist/compressed/*
|
||||||
|
|
||||||
|
|
||||||
|
- name: Install Node.js, NPM and Yarn
|
||||||
|
uses: actions/setup-node@v1
|
||||||
|
with:
|
||||||
|
node-version: 14
|
||||||
|
|
||||||
|
- name: Install test app dependencies
|
||||||
|
run: |
|
||||||
|
cd ${{ matrix.package_root }}
|
||||||
|
${{ matrix.package_manager }} install
|
||||||
|
|
||||||
|
|
||||||
|
- name: Build/release Electron app
|
||||||
|
uses: samuelmeuli/action-electron-builder@v1
|
||||||
|
with:
|
||||||
|
package_root: "./gui/"
|
||||||
|
|
||||||
|
- name: LIST ALL FILES
|
||||||
|
shell: bash
|
||||||
|
run: |
|
||||||
|
ls -R
|
||||||
|
|
||||||
|
|
||||||
|
- name: Upload Ubuntu GUI artifacts
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: gui-artifact
|
||||||
|
path: ./gui/*
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue