File tree Expand file tree Collapse file tree 2 files changed +18
-9
lines changed Expand file tree Collapse file tree 2 files changed +18
-9
lines changed Original file line number Diff line number Diff line change 19
19
uses : ./.github/actions/flutter-common
20
20
21
21
- name : Build .app
22
- run : flutter build ios --release --no-codesign
22
+ run : |
23
+ flutter build ios --release --no-codesign
24
+ cd build/ios/iphoneos
25
+ zip -r Runner.app.zip Runner.app
23
26
24
27
- uses : actions/upload-artifact@v4
25
28
with :
@@ -39,12 +42,15 @@ jobs:
39
42
uses : ./.github/actions/flutter-common
40
43
41
44
- name : Build .xcarchive
42
- run : flutter build ipa --release --no-codesign
45
+ run : |
46
+ flutter build ipa --release --no-codesign
47
+ cd build/ios/archive
48
+ zip -r Runner.xcarchive.zip Runner.xcarchive
43
49
44
50
- uses : actions/upload-artifact@v4
45
51
with :
46
52
name : builds-ipa
47
- path : build/ios/archive/Runner.xcarchive
53
+ path : build/ios/archive/Runner.xcarchive.zip
48
54
49
55
build_macos :
50
56
name : macOS
59
65
uses : ./.github/actions/flutter-common
60
66
61
67
- name : Build .app
62
- run : flutter build macos --release
68
+ run : |
69
+ flutter build macos --release
70
+ cd build/macos/Build/Products/Release
71
+ zip -r wger.app.zip wger.app
63
72
64
73
- uses : actions/upload-artifact@v4
65
74
with :
66
75
name : builds-macos
67
- path : build/macos/Build/Products/Release/wger.app
76
+ path : build/macos/Build/Products/Release/wger.app.zip
Original file line number Diff line number Diff line change @@ -143,10 +143,10 @@ jobs:
143
143
files : |
144
144
builds-aab/app-release.aab
145
145
builds-apk/app-release.apk
146
- builds-linux/wger- linux-x64.tar.gz
147
- builds-ios/Runner.app
148
- builds-ipa/Runner.xcarchive
149
- builds-macos/wger.app
146
+ builds-linux/linux-x64.tar.gz
147
+ builds-ios/Runner.app.zip
148
+ builds-ipa/Runner.xcarchive.zip
149
+ builds-macos/wger.app.zip
150
150
builds-windows/wger.exe
151
151
152
152
You can’t perform that action at this time.
0 commit comments