-
Notifications
You must be signed in to change notification settings - Fork 0
60 lines (50 loc) · 1.27 KB
/
release.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
name: Build and Release
on:
push:
branches:
- main
permissions:
contents: write
jobs:
release:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
# - ubuntu-latest
# - windows-latest
include:
- os: macos-latest
make_command: make:mac
- os: ubuntu-latest
make_command: make:linux
- os: windows-latest
make_command: make:win
steps:
- name: Check out Git repository
uses: actions/checkout@v3
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: |
npm install -g @electron-forge/cli
npm ci
- name: Make Electron app
run: npm run ${{ matrix.make_command }}
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: ${{ matrix.os }}-build
path: |
out/make/**/*.exe
out/make/**/*.msi
out/make/**/*.dmg
out/make/**/*.zip
if-no-files-found: error
- name: Publish Electron app
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: npm run publish