-
Notifications
You must be signed in to change notification settings - Fork 2
154 lines (126 loc) · 3.71 KB
/
build-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
name: Build and Release app
on:
push:
branches: [stable]
workflow_dispatch:
permissions:
contents: write
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.22.2"
channel: "stable"
- name: Build Linux
run: |
flutter config --enable-linux-desktop
flutter pub get
sudo apt-get update -y
sudo apt-get install -y ninja-build libgtk-3-dev
flutter build linux
- name: Save linux package
uses: actions/upload-artifact@v3
with:
name: lin
path: build/linux/x64/release/bundle/*
build-android:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.22.2"
channel: "stable"
- name: Build Android apps
run: |
flutter pub get
flutter build apk --split-per-abi
flutter build appbundle
- name: Save android packages
uses: actions/upload-artifact@v3
with:
name: android
path: |
build/app/outputs/flutter-apk/*
build/app/outputs/bundle/release/*
build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup flutter
uses: subosito/flutter-action@v2
with:
flutter-version: "3.22.2"
channel: "stable"
- name: Build Windows
run: |
flutter config --enable-windows-desktop
flutter pub get
flutter build windows
flutter pub run msix:create
- name: Save Windows app
uses: actions/upload-artifact@v3
with:
name: win
path: build\windows\runner\Release\*
# build-macos:
# runs-on: macos-latest
# steps:
# - name: Checkout
# uses: actions/checkout@v3
# - name: Setup flutter
# uses: subosito/flutter-action@v2
# with:
# flutter-version: '3.22.2'
# channel: 'stable'
# - name: Build MacOS
# run: |
# flutter config --enable-macos-desktop
# flutter pub get
# flutter build macos
# - name: Save MacOS app
# uses: actions/upload-artifact@v3
# with:
# name: mac
# path: build/macos/Build/Products/Release/*
release:
runs-on: ubuntu-latest
needs: [build-linux, build-android, build-windows] # build-macos
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Get all build outputs
uses: actions/download-artifact@v3
with:
path: exec/
- name: Zip Linux and Windows programs
run: 7z a -tZip ExCode-linux.zip exec/lin && 7z a -tZip ExCode-win.zip exec/win # && 7z a -tZip ExCode-mac.zip exec/mac
- name: Display structure of downloaded files
run: tree exec/
- name: Create release
uses: softprops/action-gh-release@v1
#// if: startsWith(github.ref, 'refs/tags/')
with:
name: ExCode
tag_name: v1.3.1
prerelease: true
generate_release_notes: true
files: |
exec/android/bundle/release/app-release.aab
exec/android/flutter-apk/*
ExCode-linux.zip
ExCode-win.zip
exec/win/ExCode.msix
# ExCode-mac.zip
body_path: CHANGELOG.md
token: ${{ secrets.GITHUB_TOKEN }}
env:
GITHUB_REPOSITORY: dhzdhd/ExCode