-
Notifications
You must be signed in to change notification settings - Fork 1
229 lines (219 loc) · 8.34 KB
/
build_release_latest.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
name: Create a release
on:
#push:
#branches: [ "main" ]
#pull_request:
#branches: [ "main" ]
workflow_dispatch:
jobs:
version:
name: Create version number
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install GitVersion
uses: gittools/actions/gitversion/[email protected]
with:
versionSpec: "5.x"
- name: Use GitVersion
id: gitversion
uses: gittools/actions/gitversion/[email protected]
- name: Create version.txt with nuGetVersion
run: echo ${{ steps.gitversion.outputs.nuGetVersion }} > version.txt
- name: Upload version.txt
uses: actions/upload-artifact@v2
with:
name: gitversion
path: version.txt
build-and-release-android:
runs-on: ubuntu-latest
steps:
- name: Install ninja build tools etc.
run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev libblkid-dev
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
cache: 'gradle'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.3'
channel: 'stable'
cache: true
- name: read-yaml-file
uses: pietrobolcato/[email protected]
id: read_action_js
with:
config: ${{ github.workspace }}/pubspec.yaml
- name: Generate intermediates
run: dart run build_runner build --delete-conflicting-outputs
- name: Enable Android build
run: flutter config --enable-android
- name: Build APK artifacts
run: flutter build apk --release
- name: Build App Bundle artifacts
run: flutter build appbundle --release
- name: Archive APK Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: mopicon-${{steps.read_action_js.outputs['version']}}-apk.zip
directory: build/app/outputs/flutter-apk
- name: Archive App Bundle Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: mopicon-${{steps.read_action_js.outputs['version']}}-appbundle.zip
directory: build/app/outputs/bundle/release
- name: Android APK Release
uses: softprops/action-gh-release@v1
#if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: Release ${{steps.read_action_js.outputs['version']}}
tag_name: ${{steps.read_action_js.outputs['version']}}
prerelease: ${{steps.read_action_js.outputs['mopicon_prerelease']}}
files: build/app/outputs/flutter-apk/mopicon-${{steps.read_action_js.outputs['version']}}-apk.zip
- name: Android App Bundle Release
uses: softprops/action-gh-release@v1
#if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: Release ${{steps.read_action_js.outputs['version']}}
tag_name: ${{steps.read_action_js.outputs['version']}}
prerelease: ${{steps.read_action_js.outputs['mopicon_prerelease']}}
files: build/app/outputs/bundle/release/mopicon-${{steps.read_action_js.outputs['version']}}-appbundle.zip
build-and-release-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.3'
channel: 'stable'
- name: read-yaml-file
uses: pietrobolcato/[email protected]
id: read_action_js
with:
config: ${{ github.workspace }}/pubspec.yaml
- name: Install project dependencies
run: flutter pub get
- name: Generate intermediates
run: dart run build_runner build --delete-conflicting-outputs
- name: Enable windows build
run: flutter config --enable-windows-desktop
- name: Build artifacts
run: flutter build windows --release
- name: Archive Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: mopicon-${{steps.read_action_js.outputs['version']}}-windows-x64.zip
directory: build/windows/x64/runner/Release
- name: Windows Release
uses: softprops/action-gh-release@v1
#if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: Release ${{steps.read_action_js.outputs['version']}}
tag_name: ${{steps.read_action_js.outputs['version']}}
prerelease: ${{steps.read_action_js.outputs['mopicon_prerelease']}}
files: build/windows/x64/runner/Release/mopicon-${{steps.read_action_js.outputs['version']}}-windows-x64.zip
build-and-release-ubuntu-20-04:
runs-on: ubuntu-20.04
steps:
- name: Install ninja build tools etc.
run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev libblkid-dev
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
cache: 'gradle'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.3'
channel: 'stable'
cache: true
- name: read-yaml-file
uses: pietrobolcato/[email protected]
id: read_action_js
with:
config: ${{ github.workspace }}/pubspec.yaml
- name: Generate intermediates
run: dart run build_runner build --delete-conflicting-outputs
- name: Enable linux build
run: flutter config --enable-linux-desktop
- name: Build artifacts
run: flutter build linux --release
- name: Archive Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: mopicon-${{steps.read_action_js.outputs['version']}}-ubuntu-20_04-x64.zip
directory: build/linux/x64/release/bundle
- name: Linux Release
uses: softprops/action-gh-release@v1
#if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: Release ${{steps.read_action_js.outputs['version']}}
tag_name: ${{steps.read_action_js.outputs['version']}}
prerelease: ${{steps.read_action_js.outputs['mopicon_prerelease']}}
files: build/linux/x64/release/bundle/mopicon-${{steps.read_action_js.outputs['version']}}-ubuntu-20_04-x64.zip
build-and-release-ubuntu-22-04:
runs-on: ubuntu-22.04
steps:
- name: Install ninja build tools etc.
run: |
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev libblkid-dev
- uses: actions/checkout@v4
- uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: '17'
cache: 'gradle'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.22.3'
channel: 'stable'
cache: true
- name: read-yaml-file
uses: pietrobolcato/[email protected]
id: read_action_js
with:
config: ${{ github.workspace }}/pubspec.yaml
- name: Generate intermediates
run: dart run build_runner build --delete-conflicting-outputs
- name: Enable linux build
run: flutter config --enable-linux-desktop
- name: Build artifacts
run: flutter build linux --release
- name: Archive Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: mopicon-${{steps.read_action_js.outputs['version']}}-ubuntu-22_04-x64.zip
directory: build/linux/x64/release/bundle
- name: Linux Release
uses: softprops/action-gh-release@v1
#if: startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
name: Release ${{steps.read_action_js.outputs['version']}}
tag_name: ${{steps.read_action_js.outputs['version']}}
prerelease: ${{steps.read_action_js.outputs['mopicon_prerelease']}}
files: build/linux/x64/release/bundle/mopicon-${{steps.read_action_js.outputs['version']}}-ubuntu-22_04-x64.zip