-
-
Notifications
You must be signed in to change notification settings - Fork 22
103 lines (86 loc) · 3.14 KB
/
build.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
name: Build
on:
push:
paths:
- '.github/workflows/build.yml'
- 'src-tauri/**/*'
- 'src/**/*'
pull_request:
paths:
- '.github/workflows/build.yml'
- 'src-tauri/**/*'
- 'src/**/*'
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.platform }}
strategy:
fail-fast: false
matrix:
platform: [windows-latest, ubuntu-latest, macos-latest]
steps:
- uses: pnpm/action-setup@v2
with:
version: 8.6.7
- name: Checkout
uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: 18
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Install Linux dependencies
if: matrix.platform == 'ubuntu-latest'
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.0-dev \
build-essential \
curl \
wget \
libssl-dev \
libgtk-3-dev \
libayatana-appindicator3-dev \
librsvg2-dev
# Make empty folders for plugins and themes
- name: Create empty folders for plugins and themes
run: mkdir src-tauri/target/release/plugins && mkdir src-tauri/target/release/themes
- name: Create empty config.json
run: cd src-tauri/target/release && touch config.json
- name: Install deps and build
run: pnpm install && pnpm vupdate && pnpm prebuild && pnpm build && pnpm tauri build
# paths:
# Windows:
# - src-tauri/target/release/Dorion.exe|config.json|plugins|themes|injection|html|icons
# Ubuntu:
# - src-tauri/target/release/dorion|config.json|plugins|themes|injection|html|icons
# MacOS:
# - src-tauri/target/universal-apple-darwin/release/bundle/macos/Dorion.app
- name: Compress build
if: matrix.platform == 'windows-latest'
run: 7z a -tzip Dorion.zip src-tauri/target/release/Dorion.exe src-tauri/target/release/config.json src-tauri/target/release/plugins/ src-tauri/target/release/themes/ src-tauri/target/release/injection src-tauri/target/release/html/ src-tauri/target/release/icons/
- name: Compress build
if: matrix.platform == 'ubuntu-latest'
run: cd src-tauri/target/release && tar -czvf dorion.tar.gz dorion config.json ./plugins ./themes ./injection ./html ./icons
- name: Upload build
if: matrix.platform == 'windows-latest'
uses: actions/upload-artifact@v3
with:
name: Dorion_win64_portable.zip
path: Dorion.zip
- name: Upload build
if: matrix.platform == 'ubuntu-latest'
uses: actions/upload-artifact@v3
with:
name: Dorion_amd64_portable.tar.gz
path: dorion.tar.gz
- name: Upload .app
if: matrix.platform == 'macos-latest'
uses: actions/upload-artifact@v3
with:
name: Dorion.app
path: src-tauri/target/universal-apple-darwin/release/bundle/macos/Dorion.app