Retry creating gui.yml
This commit is contained in:
parent
81a8f6b9e3
commit
9a92b47a02
|
@ -1,11 +1,10 @@
|
||||||
name: GUI Build and Package
|
name: GUI Build
|
||||||
|
|
||||||
on: [push, pull_request]
|
on: [push, pull_request]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build-and-package:
|
build-linux:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
@ -17,31 +16,60 @@ jobs:
|
||||||
- name: Install dependencies (GUI)
|
- name: Install dependencies (GUI)
|
||||||
run: cd gui && npm install
|
run: cd gui && npm install
|
||||||
|
|
||||||
- name: Build for Linux
|
- name: Build Linux Application
|
||||||
run: cd gui && npm run dist-linux
|
run: cd gui && npm run dist-linux
|
||||||
|
|
||||||
- name: Build for Windows
|
- name: Archive Linux production build
|
||||||
run: cd gui && npm run dist-win
|
|
||||||
|
|
||||||
- name: Package linux-unpacked
|
|
||||||
run: |
|
run: |
|
||||||
cd gui/dist/linux-unpacked
|
cd gui/dist
|
||||||
tar -cvJf linux-unpacked.tar.xz *
|
tar czf linux-unpacked.tar.gz linux-unpacked
|
||||||
mv linux-unpacked.tar.xz ../
|
|
||||||
|
|
||||||
- name: Package win-unpacked
|
- name: Upload Linux AppImage
|
||||||
run: |
|
|
||||||
cd gui/dist/win-unpacked
|
|
||||||
zip -r win-unpacked.zip *
|
|
||||||
mv win-unpacked.zip ../
|
|
||||||
|
|
||||||
- name: Upload Artifacts
|
|
||||||
uses: actions/upload-artifact@v2
|
uses: actions/upload-artifact@v2
|
||||||
with:
|
with:
|
||||||
name: packaged-apps
|
name: KuzcoChat-Linux
|
||||||
path: |
|
path: gui/dist/*.AppImage
|
||||||
gui/dist/*.AppImage
|
|
||||||
gui/dist/*.exe
|
- name: Upload Linux DEB
|
||||||
gui/dist/*.deb
|
uses: actions/upload-artifact@v2
|
||||||
gui/dist/linux-unpacked.tar.xz
|
with:
|
||||||
gui/dist/win-unpacked.zip
|
name: KuzcoChat-DEB
|
||||||
|
path: gui/dist/*.deb
|
||||||
|
|
||||||
|
- name: Upload Linux Unpacked Archive
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: KuzcoChat-Linux-Unpacked
|
||||||
|
path: gui/dist/linux-unpacked.tar.gz
|
||||||
|
|
||||||
|
build-windows:
|
||||||
|
runs-on: windows-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Set up Node.js
|
||||||
|
uses: actions/setup-node@v2
|
||||||
|
with:
|
||||||
|
node-version: '14'
|
||||||
|
|
||||||
|
- name: Install dependencies (GUI)
|
||||||
|
run: cd gui && npm install
|
||||||
|
|
||||||
|
- name: Build Windows Application
|
||||||
|
run: cd gui && npm run dist-win
|
||||||
|
|
||||||
|
- name: Zip Windows production build
|
||||||
|
run: |
|
||||||
|
Compress-Archive -Path gui/dist/win-unpacked/* -DestinationPath gui/dist/win-unpacked.zip
|
||||||
|
|
||||||
|
- name: Upload Windows Executable
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: KuzcoChat-Windows-EXE
|
||||||
|
path: gui/dist/*.exe
|
||||||
|
|
||||||
|
- name: Upload Windows Unpacked Archive
|
||||||
|
uses: actions/upload-artifact@v2
|
||||||
|
with:
|
||||||
|
name: KuzcoChat-Windows-Unpacked
|
||||||
|
path: gui/dist/win-unpacked.zip
|
||||||
|
|
Loading…
Reference in New Issue