-
Notifications
You must be signed in to change notification settings - Fork 1
180 lines (171 loc) · 6.03 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
name: Build and release development version
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
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@v3
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.16.3'
channel: 'stable'
- 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-${{github.ref_name}}-apk.zip
directory: build/app/outputs/flutter-apk
- name: Archive App Bundle Release
uses: thedoctor0/zip-release@master
with:
type: 'zip'
filename: mopicon-${{github.ref_name}}-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: Development Release
tag_name: latest
prerelease: true
files: build/app/outputs/flutter-apk/mopicon-${{github.ref_name}}-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: Development Release
tag_name: latest
prerelease: true
files: build/app/outputs/bundle/release/mopicon-${{github.ref_name}}-appbundle.zip
build-and-release-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.16.3'
channel: 'stable'
- 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-${{github.ref_name}}-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: Development Release
tag_name: latest
prerelease: true
files: build/windows/x64/runner/Release/mopicon-${{github.ref_name}}-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@v3
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.16.3'
channel: 'stable'
- 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-${{github.ref_name}}-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: Development Release
tag_name: latest
prerelease: true
files: build/linux/x64/release/bundle/mopicon-${{github.ref_name}}-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@v3
- uses: actions/setup-java@v2
with:
distribution: 'zulu'
java-version: '11'
- uses: subosito/flutter-action@v2
with:
flutter-version: '3.16.3'
channel: 'stable'
- 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-${{github.ref_name}}-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: Development Release
tag_name: latest
prerelease: true
files: build/linux/x64/release/bundle/mopicon-${{github.ref_name}}-ubuntu-22_04-x64.zip