-
Notifications
You must be signed in to change notification settings - Fork 25
176 lines (148 loc) · 6.41 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
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
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
name: "Release"
on:
workflow_dispatch: # 手动触发
inputs:
# 必填版本号(x.x.x)
version:
description: "版本号(x.x.x)"
required: true
jobs:
# 创建一个release
create-release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- run: gh release create v${{ github.event.inputs.version }} --title "Release v${{ github.event.inputs.version }}" --body "如果下面没有可下载的文件,说明构建失败,请联系开发者"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish-tauri:
needs: create-release
permissions:
contents: write
strategy:
fail-fast: false
matrix:
include:
- platform: "macos-latest" # for Arm based macs (M1 and above).
args: "--target aarch64-apple-darwin"
- platform: "macos-latest" # for Intel based macs.
args: "--target x86_64-apple-darwin"
- platform: "ubuntu-22.04"
args: ""
- platform: "windows-latest"
args: ""
runs-on: ${{ matrix.platform }}
steps:
- uses: actions/checkout@v4
- name: install dependencies (ubuntu only)
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
run: |
sudo apt-get update
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf libudev-dev
- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: install pnpm
run: npm install -g pnpm
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable # Set this to dtolnay/rust-toolchain@nightly
with:
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
targets: ${{ matrix.platform == 'macos-latest' && 'aarch64-apple-darwin,x86_64-apple-darwin' || '' }}
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: "./src-tauri -> target"
- name: install frontend dependencies
# If you don't have `beforeBuildCommand` configured you may want to build your frontend here too.
run: pnpm install # change this to npm or pnpm depending on which one you use.
- name: edit version (linux only)
if: matrix.platform == 'ubuntu-22.04' # This must match the platform value defined above.
run: |
sed -i "s/\"version\": \"[^\"]*\"/\"version\": \"${{ github.event.inputs.version }}\"/" src-tauri/tauri.conf.json
- name: edit version (macos only)
if: matrix.platform == 'macos-latest' # This must match the platform value defined above.
run: |
sed -i '' "s/\"version\": \"[^\"]*\"/\"version\": \"${{ github.event.inputs.version }}\"/" src-tauri/tauri.conf.json
- name: edit version (windows only)
if: matrix.platform == 'windows-latest' # This must match the platform value defined above.
run: |
$jsonContent = Get-Content -Path "src-tauri/tauri.conf.json" -Raw
$jsonObject = $jsonContent | ConvertFrom-Json
$jsonObject.version = "${{ github.event.inputs.version }}"
$jsonObject | ConvertTo-Json -Depth 10 | Set-Content -Path "src-tauri/tauri.conf.json"
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LR_GITHUB_CLIENT_SECRET: ${{ secrets.ENV_GITHUB_CLIENT_SECRET }}
LR_ARK_API_KEY: ${{ secrets.ENV_ARK_API_KEY }}
LR_CF_API_KEY: ${{ secrets.LR_CF_API_KEY }}
with:
tagName: "v${{ github.event.inputs.version }}"
args: ${{ matrix.args }}
publish-tauri-android:
needs: create-release
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: "zulu"
java-version: "17"
- name: Setup Android SDK
uses: android-actions/setup-android@v3
- name: Install NDK
run: sdkmanager "ndk;27.0.11902837"
- name: setup node
uses: actions/setup-node@v4
with:
node-version: lts/*
- name: install pnpm
run: npm install -g pnpm
- name: install Rust stable
uses: dtolnay/rust-toolchain@stable # Set this to dtolnay/rust-toolchain@nightly
with:
# Those targets are only used on macos runners so it's in an `if` to slightly speed up windows and linux builds.
targets: "armv7-linux-androideabi,i686-linux-android,x86_64-linux-android,aarch64-linux-android"
- name: Rust cache
uses: swatinem/rust-cache@v2
with:
workspaces: "./src-tauri -> target"
- name: install frontend dependencies
# If you don't have `beforeBuildCommand` configured you may want to build your frontend here too.
run: pnpm install # change this to npm or pnpm depending on which one you use.
- name: edit version
run: |
sed -i "s/\"version\": \"[^\"]*\"/\"version\": \"${{ github.event.inputs.version }}\"/" src-tauri/tauri.conf.json
- name: setup sign
run: |
cd src-tauri/gen/android
# create keystore.properties
cat > keystore.properties <<EOF
password=${{ secrets.ANDROID_RELEASE_PASSWORD }}
keyAlias=upload
storeFile=upload.jks
EOF
# create upload.jks
echo "${{ secrets.ANDROID_RELEASE_KEYSTORE }}" | base64 --decode > app/upload.jks
- name: build
run: pnpm tauri android build -v
env:
NDK_HOME: ${{ env.ANDROID_HOME }}/ndk/27.0.11902837
LR_GITHUB_CLIENT_SECRET: ${{ secrets.ENV_GITHUB_CLIENT_SECRET }}
LR_ARK_API_KEY: ${{ secrets.ENV_ARK_API_KEY }}
LR_CF_API_KEY: ${{ secrets.LR_CF_API_KEY }}
- name: rename apk file
run: |
cd src-tauri/gen/android/app/build/outputs/apk/universal/release
mv app-universal-release.apk Project.Graph_${{ github.event.inputs.version }}_universal-signed.apk
- name: upload
run: gh release upload nightly src-tauri/gen/android/app/build/outputs/apk/universal/release/Project.Graph_${{ github.event.inputs.version }}_universal-signed.apk --clobber
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}