-
Notifications
You must be signed in to change notification settings - Fork 114
149 lines (143 loc) · 4.44 KB
/
build-app.yaml
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
name: Release MagicMirror
on:
workflow_dispatch:
jobs:
build-for-macos:
name: macOS
permissions:
contents: write
strategy:
fail-fast: false
matrix:
include:
- target: universal-apple-darwin
build: macos
os: macos-latest
arch: universal
- target: aarch64-apple-darwin
build: macos
os: macos-latest
arch: aarch64
- target: x86_64-apple-darwin
build: macos
os: macos-latest
arch: x86_64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v3
with:
version: 8.5.1
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
targets: ${{ matrix.arch == 'universal' && 'aarch64-apple-darwin,x86_64-apple-darwin' || matrix.target }}
- name: Setup Rust Cache
uses: swatinem/rust-cache@v2
with:
workspaces: "src-tauri/${{ matrix.target }} -> target"
- name: Build APP
run: |
pnpm install
VERSION=$(node -p "require('./package.json').version")
CI=false pnpm tauri build -c "{\"version\":\"$VERSION\"}" -t ${{ matrix.target }}
APP_NAME="MagicMirror_${VERSION}_${{ matrix.build }}_${{ matrix.arch }}"
node scripts/dist.js ${{ matrix.target }} $APP_NAME
- name: Upload App
uses: actions/upload-artifact@v4
with:
name: app_${{ matrix.build }}_${{ matrix.arch }}
path: dist/MagicMirror_*
build-for-windows:
name: Windows
permissions:
contents: write
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-pc-windows-msvc
build: windows
os: windows-latest
arch: x86_64
- target: aarch64-pc-windows-msvc
build: windows
os: windows-latest
arch: aarch64
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Setup PNPM
uses: pnpm/action-setup@v3
with:
version: 8.5.1
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"
cache-dependency-path: "pnpm-lock.yaml"
- name: Setup Rust
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
targets: ${{ matrix.target }}
- name: Setup Rust Cache
uses: swatinem/rust-cache@v2
with:
workspaces: "src-tauri/${{ matrix.target }} -> target"
- name: Build APP
shell: pwsh
run: |
pnpm install
$VERSION = node -p "require('./package.json').version"
$jsonConfig = "{`"version`":`"$VERSION`"}"
pnpm tauri build -c $jsonConfig -t ${{ matrix.target }} --bundles nsis
$APP_NAME = "MagicMirror_$VERSION_${{ matrix.build }}_${{ matrix.arch }}"
node scripts/dist.js ${{ matrix.target }} $APP_NAME
- name: Upload App
uses: actions/upload-artifact@v4
with:
name: app_${{ matrix.build }}_${{ matrix.arch }}
path: dist/MagicMirror_*
release:
name: Release
needs: [build-for-macos, build-for-windows]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
pattern: app_*
path: dist
merge-multiple: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Check Version
id: version
run: |
VERSION=$(node -p "require('./package.json').version")
echo "version=$VERSION" >> $GITHUB_OUTPUT
- name: Release MagicMirror v${{ steps.version.outputs.version }}
uses: ncipollo/release-action@v1
with:
allowUpdates: true
token: ${{ secrets.GITHUB_TOKEN }}
name: MagicMirror v${{ steps.version.outputs.version }}
tag: v${{ steps.version.outputs.version }}
draft: true
prerelease: false
makeLatest: latest
removeArtifacts: true
artifacts: dist/*