-
Notifications
You must be signed in to change notification settings - Fork 4
151 lines (126 loc) · 3.65 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
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
name: Build CI
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build-android:
name: Build Android
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '17'
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- env:
ANDROID_STORE_KEY_PROPERTIES: |
${{ secrets.ANDROID_STORE_KEY_PROPERTIES }}
run: echo -ne "$ANDROID_STORE_KEY_PROPERTIES" > android/key.properties
- env:
GOOGLE_PLAYSTORE_JKS_BASE64: |
${{ secrets.GOOGLE_PLAYSTORE_JKS_BASE64 }}
run: echo -ne "$GOOGLE_PLAYSTORE_JKS_BASE64" | base64 --decode > android/GooglePlaystore.jks
- run: flutter --version
- run: flutter pub get
- run: ./gen-i10n.sh
- run: flutter build apk
- run: flutter build appbundle
- uses: actions/upload-artifact@v4
with:
name: Android
path: |
build/app/outputs/flutter-apk/app-release.apk
build/app/outputs/bundle/release/app-release.aab
build-ios:
name: Build iOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
architecture: x64
- run: flutter --version
- run: flutter pub get
- run: ./gen-i10n.sh
- run: flutter build ios --release --no-codesign
- uses: actions/upload-artifact@v4
with:
name: iOS
path: build/ios/iphoneos/Runner.app
build-web:
name: Build Web
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter --version
- run: flutter pub get
- run: ./gen-i10n.sh
- run: flutter build web
- uses: actions/upload-artifact@v4
with:
name: Web
path: build/web
build-windows:
name: Build Windows
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: flutter --version
- run: flutter pub get
- run: cmd /c win-gen-i10n.bat
- run: flutter config --enable-windows-desktop
- run: flutter build windows
- uses: actions/upload-artifact@v4
with:
name: Windows
path: build\windows\x64\runner\Release\NWT_Reading.exe
build-linux:
name: Build Linux
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
- run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
- run: flutter --version
- run: flutter pub get
- run: ./gen-i10n.sh
- run: flutter config --enable-linux-desktop
- run: flutter build linux
- uses: actions/upload-artifact@v4
with:
name: Linux
path: build/linux/x64/release/bundle/nwt_reading
build-macos:
name: Build macOS
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
channel: 'stable'
architecture: x64
- run: flutter --version
- run: flutter pub get
- run: ./gen-i10n.sh
- run: flutter config --enable-macos-desktop
- run: flutter build macos
- uses: actions/upload-artifact@v4
with:
name: macOS
path: build/macos/Build/Products/Release/NWT Reading.app