Skip to content
This repository was archived by the owner on Dec 19, 2025. It is now read-only.

Commit 25d2e24

Browse files
committed
Fix iOS build workflow to reference correct app name and add directory listing step
1 parent 71c6bc7 commit 25d2e24

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

.github/workflows/ios-testing.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,16 +26,18 @@ jobs:
2626
- name: Build iOS App (Release, No Sign)
2727
run: haxelib run lime build ios -release -nosign -D officialBuild -D NotDeveloper
2828

29+
- run: dir export/ios/build/Release-iphoneos
30+
2931
- name: Package .app into unsigned .ipa
3032
run: |
3133
cd export/ios/build/Release-iphoneos
3234
mkdir -p Payload
33-
cp -r YourAppName.app Payload/
34-
zip -r YourAppName.ipa Payload
35+
cp -r HyperCodeEngine.app Payload/
36+
zip -r HyperCodeEngine.ipa Payload
3537
shell: bash
3638

3739
- name: Upload unsigned .ipa artifact
3840
uses: actions/upload-artifact@v4.6.2
3941
with:
4042
name: ios-unsigned-ipa
41-
path: export/ios/build/Release-iphoneos/YourAppName.ipa
43+
path: export/ios/build/Release-iphoneos/HyperCodeEngine.ipa

0 commit comments

Comments
 (0)