-
-
Notifications
You must be signed in to change notification settings - Fork 1
73 lines (61 loc) · 2.18 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
name: Build
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
jobs:
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- name: Install Packages
run: |
npm i
npm install -g pnpm
- name: Run Tauri Build (MacOS x86_64)
if: matrix.os == 'macos-latest'
run: |
rustup target add x86_64-apple-darwin
pnpm tauri build --target x86_64-apple-darwin
- name: Run Tauri Build (MacOS aarch64)
if: matrix.os == 'macos-latest'
run: |
rustup target add aarch64-apple-darwin
pnpm tauri build --target aarch64-apple-darwin
- name: Run Tauri Build (Windows)
if: matrix.os == 'windows-latest'
run: pnpm tauri build
- name: Upload Artifact (MacOS x86_64 Bundle)
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: ReportBook MacOS x86_64 Bundle
path: ${{github.workspace}}/src-tauri/target/x86_64-apple-darwin/release/bundle/macos/ReportBook.app
- name: Upload Artifact (MacOS aarch64 Bundle)
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: ReportBook MacOS aarch64 Bundle
path: ${{github.workspace}}/src-tauri/target/aarch64-apple-darwin/release/bundle/macos/ReportBook.app
- name: Upload Artifact (MacOS x86_64 Binary)
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: ReportBook MacOS x86_64 Binary
path: ${{github.workspace}}/src-tauri/target/x86_64-apple-darwin/release/reportbook
- name: Upload Artifact (MacOS aarch64 Binary)
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: ReportBook MacOS aarch64 Binary
path: ${{github.workspace}}/src-tauri/target/aarch64-apple-darwin/release/reportbook
- name: Upload Artifact (Windows)
if: matrix.os == 'windows-latest'
uses: actions/upload-artifact@v4
with:
name: ReportBook Windows
path: ${{github.workspace}}\src-tauri\target\release\reportbook.exe