-
Notifications
You must be signed in to change notification settings - Fork 320
27 lines (25 loc) · 953 Bytes
/
build.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install linux packages
run: sudo apt-get update && sudo apt-get install wine
- name: Download node.js
run: curl -o /tmp/node.tar.xz https://nodejs.org/dist/v20.10.0/node-v20.10.0-linux-x64.tar.xz && sudo tar --strip-components=1 -xJvf /tmp/node.tar.xz -C /usr/local
- name: Install deps
run: npm install
- name: Create apps folder
run: mkdir -p apps
- name: build linux64 release
run: node ./node_modules/gulp/bin/gulp.js release --platform=linux64 -LLLL
- name: build win64 release
run: node ./node_modules/gulp/bin/gulp.js release --platform=win64
- name: List files
run: ls -lR .
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: Binaries
path: apps/*.{zip,rpm,deb,pkg,dmg}