build: 55712324-398e-4334-a254-fc30c84b2e47

This commit is contained in:
AppCakes
2026-05-20 11:18:13 +00:00
commit 14a6b9a471
67 changed files with 4277 additions and 0 deletions
+52
View File
@@ -0,0 +1,52 @@
workflows:
android-debug:
name: Android Debug APK
max_build_duration: 45
instance_type: mac_mini_m2
environment:
node: 22
java: 21
cache:
cache_paths:
- $HOME/.gradle/caches
- $HOME/.gradle/wrapper
scripts:
- name: Install dependencies
script: npm install
- name: Build web assets
script: npm run build
- name: Capacitor sync
script: npx cap sync android
- name: Build debug APK
script: |
cd android
./gradlew assembleDebug --no-daemon
artifacts:
- android/app/build/outputs/apk/debug/app-debug.apk
ios-debug:
name: iOS Debug IPA
max_build_duration: 60
instance_type: mac_mini_m2
environment:
node: 20
xcode: latest
cache:
cache_paths:
- $HOME/Library/Caches/CocoaPods
scripts:
- name: Install dependencies
script: npm install
- name: Build web assets
script: npm run build
- name: Capacitor sync
script: npx cap sync ios
- name: Install CocoaPods
script: cd ios/App && pod install
- name: Build IPA
script: |
xcode-project build-ipa \
--workspace ios/App/App.xcworkspace \
--scheme App
artifacts:
- build/ios/ipa/*.ipa