-
-
Notifications
You must be signed in to change notification settings - Fork 11
106 lines (89 loc) · 2.67 KB
/
main.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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
name: Node.js CI
on:
push:
branches:
- main
paths-ignore:
- 'package.json'
- 'app/package.json'
- 'app/client/package.json'
- 'README.md'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
jobs:
windows:
name: Build for Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.5.1'
- run: npm version patch --git-tag-version false && cd app && npm version patch --git-tag-version false && cd client && npm version patch --git-tag-version false && cd ..\..
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: Automated Version Bump
push_options: '--force'
skip_dirty_check: true
- run: npm install -g electron-builder
- run: npm install
- run: npm run build
- uses: actions/[email protected]
with:
name: Windows Executables
path: dist/*.exe
linux:
name: Build for Linux
needs: windows
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.5.1'
- run: npm install -g electron-builder
- run: npm install
- run: npm run lbuild
- uses: actions/[email protected]
with:
name: Linux Executables
path: |
dist/*.AppImage
dist/*.tar.xz
dist/*.amd64.deb
osx:
name: Build for MacOS
needs: windows
runs-on: macos-13
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.5.1'
- run: export OPENSSL_DIR=/usr/local/opt/openssl@3
- run: npm install -g electron-builder
- run: npm install
- run: npm run lbuild
- uses: actions/[email protected]
with:
name: MacOS Executables
path: dist/*.dmg
notify:
name: Notify
needs: [osx, linux]
runs-on: ubuntu-latest
steps:
- name: Send message
uses: appleboy/telegram-action@master
with:
to: ${{ secrets.TELEGRAM_TO }}
token: ${{ secrets.TELEGRAM_TOKEN }}
message: |
${{ github.actor }} added a new commit!
${{ github.event.commits[0].message }}
Download: https://nightly.link/SaturnMusic/PC/workflows/main/main?preview
Changelog: https://github.com/${{ github.repository }}/commit/${{github.sha}}
Please star the repository <3