forked from Olmectron/Simple-Web-App-GUI-for-YANBF-Generator
-
Notifications
You must be signed in to change notification settings - Fork 1
83 lines (79 loc) · 1.92 KB
/
nightly.yml
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
name: Build nightly
on:
push:
branches: ["*"]
paths-ignore:
- 'README.md'
pull_request:
branches: ["*"]
paths-ignore:
- 'README.md'
workflow_dispatch:
jobs:
windows:
runs-on: windows-2019
name: Build Windows
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Create package
run: |
npm run dist
mkdir actions
cp dist/YANBFGenerator.exe actions/YANBF-GUI.exe
shell: bash
- name: Publish
uses: actions/upload-artifact@v2
with:
path: actions
name: YANBF-GUI-Windows
macos:
runs-on: macos-11
name: Build macOS
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Create package
run: |
npm run dist
mkdir actions
cp dist/YANBFGenerator.dmg actions/YANBF-GUI.dmg
- name: Publish
uses: actions/upload-artifact@v2
with:
path: actions
name: YANBF-GUI-macOS
linux:
runs-on: ubuntu-latest
name: Build Linux
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Install dependencies
run: npm install
- name: Create package
run: |
npm run dist
mkdir actions
cp dist/YANBFGenerator.AppImage actions/YANBF-GUI.AppImage
- name: Publish
uses: actions/upload-artifact@v2
with:
path: actions
name: YANBF-GUI-Linux