-
Notifications
You must be signed in to change notification settings - Fork 0
357 lines (299 loc) · 11.9 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
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
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
name: Release Flutter (Mobile & Desktop)
on:
# Enable manual run
workflow_dispatch:
inputs:
version:
description: "Tag to create (e.g. v2.10.0). Must include 'v' and must match pubspec"
required: true
default: "v2.10.0"
type: string
environment:
type: choice
description: "Which environment are you using? (iOS only)"
required: true
default: "development"
options:
- development
- production
prerelease:
description: "Prerelease"
required: false
default: false
type: boolean
# Declare default permissions as read only.
permissions: read-all
jobs:
draft-release:
name: Draft Github release
runs-on: ubuntu-latest
needs:
- apk-build
- aab-build
- ios-build
- windows-build
- linux-build
- macos-build
steps:
- uses: actions/download-artifact@v3
with:
path: build/
- name: Display structure of downloaded files
run: ls -R
working-directory: build/
- name: Push APK to Releases
uses: ncipollo/release-action@v1
with:
name: ${{ github.event.inputs.version }}
artifacts: "./**/*.apk,./**/*.aab,./**/*.ipa,./**/*.tar.gz,./**/*.zip"
tag: ${{ github.event.inputs.version }}
token: ${{ secrets.FLUTTER_BOILERPLATE_BOT_TOKEN }}
prerelease: ${{ github.event.inputs.prerelease == 'true' }}
apk-build:
name: Create apk build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: "17.x"
distribution: 'temurin'
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.7.12'
# - name: Setup NDK
# uses: nttld/setup-ndk@v1
# with:
# ndk-version: 'r21e'
# add-to-path: true
# env:
# ANDROID_NDK_HOME: '/usr/local/lib/android/sdk/ndk'
- name: Flutter doctor -v
run: flutter doctor -v
- name: Install Deps
run: flutter pub get
- name: Configure Keystore for Android
run: |
echo "$PLAY_STORE_UPLOAD_KEY" | base64 --decode > app/upload-keystore.jks
echo "storeFile=upload-keystore.jks" >> key.properties
echo "keyAlias=$KEYSTORE_KEY_ALIAS" >> key.properties
echo "storePassword=$KEYSTORE_STORE_PASSWORD" >> key.properties
echo "keyPassword=$KEYSTORE_KEY_PASSWORD" >> key.properties
env:
PLAY_STORE_UPLOAD_KEY: ${{ secrets.PLAY_STORE_UPLOAD_KEY }}
KEYSTORE_KEY_ALIAS: ${{ secrets.KEYSTORE_KEY_ALIAS }}
KEYSTORE_KEY_PASSWORD: ${{ secrets.KEYSTORE_KEY_PASSWORD }}
KEYSTORE_STORE_PASSWORD: ${{ secrets.KEYSTORE_STORE_PASSWORD }}
working-directory: android
# Build the application.
- run: flutter build apk --release --split-per-abi --no-tree-shake-icons
# Package the build.
- name: Copy build for Android
run: cp *.apk $GITHUB_WORKSPACE/
working-directory: build/app/outputs/flutter-apk
- uses: actions/upload-artifact@v3
with:
name: apk-artifact
path: ./*.apk
aab-build:
name: Create appbundle build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v3
with:
java-version: "17.x"
distribution: 'temurin'
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.7.12'
# - name: Setup NDK
# uses: nttld/setup-ndk@v1
# with:
# ndk-version: 'r21e'
# add-to-path: true
# env:
# ANDROID_NDK_HOME: '/usr/local/lib/android/sdk/ndk'
- name: Flutter doctor -v
run: flutter doctor -v
- name: Install Deps
run: flutter pub get
- name: Configure Keystore for Android
run: |
echo "$PLAY_STORE_UPLOAD_KEY" | base64 --decode > app/upload-keystore.jks
echo "storeFile=upload-keystore.jks" >> key.properties
echo "keyAlias=$KEYSTORE_KEY_ALIAS" >> key.properties
echo "storePassword=$KEYSTORE_STORE_PASSWORD" >> key.properties
echo "keyPassword=$KEYSTORE_KEY_PASSWORD" >> key.properties
env:
PLAY_STORE_UPLOAD_KEY: ${{ secrets.PLAY_STORE_UPLOAD_KEY }}
KEYSTORE_KEY_ALIAS: ${{ secrets.KEYSTORE_KEY_ALIAS }}
KEYSTORE_KEY_PASSWORD: ${{ secrets.KEYSTORE_KEY_PASSWORD }}
KEYSTORE_STORE_PASSWORD: ${{ secrets.KEYSTORE_STORE_PASSWORD }}
working-directory: android
# Build the application.
- run: flutter build appbundle --release --no-tree-shake-icons
# Package the build.
- name: Copy build for Android
run: cp *.aab $GITHUB_WORKSPACE/
working-directory: build/app/outputs/bundle/release
- uses: actions/upload-artifact@v3
with:
name: aab-artifact
path: ./*.aab
ios-build:
name: Create ios build
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.7.12'
- name: Flutter doctor -v
run: flutter doctor -v
- name: Install Deps
run: flutter pub get
- name: Install the Apple certificate and provisioning profile
env:
BUILD_CERTIFICATE_BASE64: ${{ secrets.P12_BASE64 }}
BUILD_CERTIFICATE_DEV_BASE64: ${{ secrets.P12_DEV_BASE64 }}
BUILD_CERT_BASE64: ${{ secrets.CERT_BASE64 }}
BUILD_CERT_DEV_BASE64: ${{ secrets.CERT_DEV_BASE64 }}
P12_PASSWORD: ${{ secrets.P12_PASSWORD }}
BUILD_PROVISION_PROFILE_BASE64: ${{ secrets.PROVISIONING_PROFILE_BASE64 }}
BUILD_PROVISION_PROFILE_DEV_BASE64: ${{ secrets.PROVISIONING_PROFILE_DEV_BASE64 }}
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
run: |
# create variables
CERTIFICATE_PATH=$RUNNER_TEMP/build_certificate.p12
CERTIFICATE_DEV_PATH=$RUNNER_TEMP/build_certificate_dev.p12
CERT_PATH=$RUNNER_TEMP/ios_distribution.cer
CERT_DEV_PATH=$RUNNER_TEMP/development.cer
PP_PATH=$RUNNER_TEMP/flutter-template-ns-appstore.mobileprovision
PP_DEV_PATH=$RUNNER_TEMP/flutter-template-ns-dev.mobileprovision
KEYCHAIN_PATH=$RUNNER_TEMP/app-signing.keychain-db
# import certificate and provisioning profile from secrets
echo -n "$BUILD_CERTIFICATE_BASE64" | base64 --decode --output $CERTIFICATE_PATH
echo -n "$BUILD_CERTIFICATE_DEV_BASE64" | base64 --decode --output $CERTIFICATE_DEV_PATH
echo -n "$BUILD_CERT_BASE64" | base64 --decode --output $CERT_PATH
echo -n "$BUILD_CERT_DEV_BASE64" | base64 --decode --output $CERT_DEV_PATH
echo -n "$BUILD_PROVISION_PROFILE_BASE64" | base64 --decode --output $PP_PATH
echo -n "$BUILD_PROVISION_PROFILE_DEV_BASE64" | base64 --decode --output $PP_DEV_PATH
# create temporary keychain
security create-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
security set-keychain-settings -lut 21600 $KEYCHAIN_PATH
security unlock-keychain -p "$KEYCHAIN_PASSWORD" $KEYCHAIN_PATH
# import certificate to keychain
security import $CERTIFICATE_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
security import $CERTIFICATE_DEV_PATH -P "$P12_PASSWORD" -A -t cert -f pkcs12 -k $KEYCHAIN_PATH
security import $CERT_PATH -P "$P12_PASSWORD" -A -t cert -k $KEYCHAIN_PATH
security import $CERT_DEV_PATH -P "$P12_PASSWORD" -A -t cert -k $KEYCHAIN_PATH
security list-keychain -d user -s $KEYCHAIN_PATH
# apply provisioning profile
mkdir -p ~/Library/MobileDevice/Provisioning\ Profiles
cp $PP_PATH ~/Library/MobileDevice/Provisioning\ Profiles
cp $PP_DEV_PATH ~/Library/MobileDevice/Provisioning\ Profiles
- name: Build
run: flutter build ipa --release --export-options-plist=ios/ExportOptions-${{ github.event.inputs.environment }}.plist
# Package the build.
- name: Copy build for iOS
run: cp *.ipa $GITHUB_WORKSPACE/
working-directory: build/ios/ipa
- uses: actions/upload-artifact@v3
with:
name: ios-artifact
path: ./*.ipa
- name: Clean up keychain and provisioning profile
if: ${{ always() }}
run: |
security delete-keychain $RUNNER_TEMP/app-signing.keychain-db
rm ~/Library/MobileDevice/Provisioning\ Profiles/flutter-template-ns-appstore.mobileprovision
rm ~/Library/MobileDevice/Provisioning\ Profiles/flutter-template-ns-dev.mobileprovision
windows-build:
name: Create windows build
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.7.12'
- name: Flutter doctor -v
run: flutter doctor -v
- name: Install Deps
run: flutter pub get
# Build the application.
- run: flutter build windows --release --no-tree-shake-icons
- name: Copy VC redistributables to release directory for Windows
run: |
Copy-Item (vswhere -latest -find 'VC\Redist\MSVC\*\x64\*\msvcp140.dll') .
Copy-Item (vswhere -latest -find 'VC\Redist\MSVC\*\x64\*\vcruntime140.dll') .
Copy-Item (vswhere -latest -find 'VC\Redist\MSVC\*\x64\*\vcruntime140_1.dll') .
working-directory: build\windows\runner\Release
# Package the build.
- name: Compress build for Windows
run: compress-archive -Path * -DestinationPath ${env:GITHUB_WORKSPACE}\flutter_boilerplate_windows.zip
working-directory: build\windows\runner\Release
- uses: actions/upload-artifact@v3
with:
name: windows-artifact
path: .\*.zip
linux-build:
name: Create linux build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Linux dependencies
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libx11-dev pkg-config cmake ninja-build libblkid-dev
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.7.12'
- name: Flutter doctor -v
run: flutter doctor -v
- name: Install Deps
run: flutter pub get
# Build the application.
- run: flutter build linux --release --no-tree-shake-icons
# Package the build.
- name: Compress build for Linux
run: tar czf $GITHUB_WORKSPACE/flutter_boilerplate_linux.tar.gz *
working-directory: build/linux/x64/release/bundle
- uses: actions/upload-artifact@v3
with:
name: linux-artifact
path: ./*.tar.gz
macos-build:
name: Create macos build
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Setup Flutter
uses: subosito/flutter-action@v2
with:
channel: 'stable'
flutter-version: '3.7.12'
- name: Flutter doctor -v
run: flutter doctor -v
- name: Install Deps
run: flutter pub get
# Build the application.
- run: flutter build macos --release --no-tree-shake-icons
# Package the build.
- name: Compress build for macOS
run: ditto -c -k --sequesterRsrc --keepParent flutter_template_ns.app $GITHUB_WORKSPACE/flutter_boilerplate_macos.zip
working-directory: build/macos/Build/Products/Release
- uses: actions/upload-artifact@v3
with:
name: macos-artifact
path: ./*.zip