From e05ded8117344f16067f7167a8af1213d4c339b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?BARTHES=20Math=C3=A9o?= <112965202+Mathr81@users.noreply.github.com> Date: Wed, 29 Apr 2026 21:56:24 +0200 Subject: [PATCH] Update build.yml for iOS build directory changes --- .github/workflows/build.yml | 17 +++++++++++------ 1 file changed, 11 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 7ff7346..0acbf63 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -7,11 +7,16 @@ on: description: 'Build iOS IPA' type: boolean default: true - + jobs: build_ios: runs-on: macos-latest if: ${{ inputs.build_ios }} + + defaults: + run: + working-directory: app + steps: - uses: actions/checkout@v4 @@ -23,8 +28,8 @@ jobs: - name: 💾 • Cache Node Modules uses: actions/cache@v4 with: - path: node_modules - key: node-modules-${{ hashFiles('package.json') }} + path: app/node_modules + key: node-modules-${{ hashFiles('app/package.json') }} restore-keys: | node-modules- @@ -35,9 +40,9 @@ jobs: uses: actions/cache@v4 with: path: | - ios/Pods + app/ios/Pods ~/.cocoapods - key: pods-${{ hashFiles('ios/Podfile.lock') }} + key: pods-${{ hashFiles('app/ios/Podfile.lock') }} restore-keys: | pods- @@ -73,5 +78,5 @@ jobs: uses: actions/upload-artifact@v4 with: name: Movix - path: ios/build/Movix.ipa + path: app/ios/build/Movix.ipa if-no-files-found: error