-
Notifications
You must be signed in to change notification settings - Fork 3
285 lines (247 loc) · 8.9 KB
/
release.yml
File metadata and controls
285 lines (247 loc) · 8.9 KB
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
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
name: Build and Release
on:
push:
tags:
- 'v*'
workflow_dispatch:
permissions:
contents: read
jobs:
version:
name: Extract version
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version.outputs.VERSION }}
tag: ${{ steps.version.outputs.TAG }}
steps:
- name: Extract version from tag
id: version
run: |
echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
echo "TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_OUTPUT
build-android-x86_64:
name: Android APK (x86_64)
runs-on: ubuntu-latest
environment: Release
needs: version
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Pull builder image
run: docker pull ghcr.io/magicgrants/skylight-wallet-builder:latest
- name: Set up Android signing
run: |
echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > ./android/keystore.jks
cat > android/key.properties << EOF
storePassword=${{ secrets.ANDROID_STORE_PASSWORD }}
keyPassword=${{ secrets.ANDROID_KEY_PASSWORD }}
keyAlias=${{ secrets.ANDROID_KEY_ALIAS }}
storeFile=/workspace/android/keystore.jks
EOF
- name: Build APK (x86_64)
run: |
VERSION='${{ needs.version.outputs.version }}'
docker run --rm \
-v "$PWD:/workspace" \
-w /workspace \
ghcr.io/magicgrants/skylight-wallet-builder:latest \
bash -c "flutter pub get && flutter build apk --dart-define=DEMO_MODE=true --release --target-platform android-x64"
mkdir -p dist
APK="$(ls -1 build/app/outputs/flutter-apk/*.apk | head -n1)"
cp -v "$APK" "dist/skylight-wallet-${VERSION}-x86_64.apk"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: android-x86_64
path: dist/*.apk
build-android-arm64:
name: Android APK (arm64-v8a)
runs-on: ubuntu-latest
environment: Release
needs: version
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Pull builder image
run: docker pull ghcr.io/magicgrants/skylight-wallet-builder:latest
- name: Set up Android signing
run: |
echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > ./android/keystore.jks
cat > android/key.properties << EOF
storePassword=${{ secrets.ANDROID_STORE_PASSWORD }}
keyPassword=${{ secrets.ANDROID_KEY_PASSWORD }}
keyAlias=${{ secrets.ANDROID_KEY_ALIAS }}
storeFile=/workspace/android/keystore.jks
EOF
- name: Build APK (arm64-v8a)
run: |
VERSION='${{ needs.version.outputs.version }}'
docker run --rm \
-v "$PWD:/workspace" \
-w /workspace \
ghcr.io/magicgrants/skylight-wallet-builder:latest \
bash -c "flutter pub get && flutter build apk --dart-define=DEMO_MODE=true --release --target-platform android-arm64"
mkdir -p dist
APK="$(ls -1 build/app/outputs/flutter-apk/*.apk | head -n1)"
cp -v "$APK" "dist/skylight-wallet-${VERSION}-arm64-v8a.apk"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: android-arm64-v8a
path: dist/*.apk
build-android-armeabi-v7a:
name: Android APK (armeabi-v7a)
runs-on: ubuntu-latest
environment: Release
needs: version
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Pull builder image
run: docker pull ghcr.io/magicgrants/skylight-wallet-builder:latest
- name: Set up Android signing
run: |
echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > ./android/keystore.jks
cat > android/key.properties << EOF
storePassword=${{ secrets.ANDROID_STORE_PASSWORD }}
keyPassword=${{ secrets.ANDROID_KEY_PASSWORD }}
keyAlias=${{ secrets.ANDROID_KEY_ALIAS }}
storeFile=/workspace/android/keystore.jks
EOF
- name: Build APK (armeabi-v7a)
run: |
VERSION='${{ needs.version.outputs.version }}'
docker run --rm \
-v "$PWD:/workspace" \
-w /workspace \
ghcr.io/magicgrants/skylight-wallet-builder:latest \
bash -c "flutter pub get && flutter build apk --dart-define=DEMO_MODE=true --release --target-platform android-arm"
mkdir -p dist
APK="$(ls -1 build/app/outputs/flutter-apk/*.apk | head -n1)"
cp -v "$APK" "dist/skylight-wallet-${VERSION}-armeabi-v7a.apk"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: android-armeabi-v7a
path: dist/*.apk
build-android-aab:
name: Android App Bundle (AAB)
runs-on: ubuntu-latest
environment: Release
needs: version
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Pull builder image
run: docker pull ghcr.io/magicgrants/skylight-wallet-builder:latest
- name: Set up Android signing
run: |
echo "${{ secrets.ANDROID_KEYSTORE_BASE64 }}" | base64 -d > ./android/keystore.jks
cat > android/key.properties << EOF
storePassword=${{ secrets.ANDROID_STORE_PASSWORD }}
keyPassword=${{ secrets.ANDROID_KEY_PASSWORD }}
keyAlias=${{ secrets.ANDROID_KEY_ALIAS }}
storeFile=/workspace/android/keystore.jks
EOF
- name: Build AAB
run: |
VERSION='${{ needs.version.outputs.version }}'
docker run --rm \
-v "$PWD:/workspace" \
-w /workspace \
ghcr.io/magicgrants/skylight-wallet-builder:latest \
bash -c "flutter pub get && flutter build appbundle --dart-define=DEMO_MODE=true --release"
mkdir -p dist
cp -v build/app/outputs/bundle/release/app-release.aab "dist/skylight-wallet-${VERSION}.aab"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: android-aab
path: dist/*.aab
build-linux-x86_64:
name: Linux AppImage (x86_64)
runs-on: ubuntu-latest
environment: Release
needs: version
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
submodules: recursive
- name: Pull builder image
run: docker pull ghcr.io/magicgrants/skylight-wallet-builder:latest
- name: Build AppImage (x86_64)
run: |
VERSION='${{ needs.version.outputs.version }}'
docker run --rm \
-v "$PWD:/workspace" \
-w /workspace \
ghcr.io/magicgrants/skylight-wallet-builder:latest \
bash -c "flutter pub get && ./appimage/build_appimage.sh --version ${VERSION}"
mkdir -p dist
cp -v appimage/skylight-wallet-*.AppImage dist/
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
name: linux-appimage
path: dist/*.AppImage
release:
name: Sign + Release
runs-on: ubuntu-latest
environment: Release
needs:
- version
- build-android-x86_64
- build-android-arm64
- build-android-armeabi-v7a
- build-android-aab
- build-linux-x86_64
permissions:
contents: write
steps:
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
path: dist
- name: List downloaded artifacts
run: |
echo "=== dist tree ==="
find dist -type f -maxdepth 3 -print
- name: Import GPG key
run: |
echo "${{ secrets.GPG_PRIVATE_KEY }}" | gpg --batch --import
- name: Sign artifacts with GPG
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: |
set -euo pipefail
find dist -type f \( -name "*.apk" -o -name "*.aab" -o -name "*.AppImage" \) -print0 | while IFS= read -r -d '' file; do
echo "$GPG_PASSPHRASE" | gpg --batch --yes --pinentry-mode loopback --passphrase-fd 0 --detach-sign --armor "$file"
echo "Signed: $file"
done
echo "=== Generated signatures ==="
find dist -name "*.asc" -type f -print
- name: Create Release
uses: softprops/action-gh-release@v1
with:
name: ${{ needs.version.outputs.tag }}
draft: false
prerelease: false
generate_release_notes: true
files: |
dist/**/*.apk
dist/**/*.apk.asc
dist/**/*.aab
dist/**/*.aab.asc
dist/**/*.AppImage
dist/**/*.AppImage.asc
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}