fix: install fastlane via Homebrew instead of bundler
Some checks failed
CI / Scraper / Test (pull_request) Successful in 8s
CI / Scraper / Lint (pull_request) Successful in 19s
CI / Scraper / Docker Push (pull_request) Has been skipped
CI / UI / Build (pull_request) Successful in 23s
CI / UI / Docker Push (pull_request) Has been skipped
iOS CI / Test (push) Has been cancelled
iOS CI / Build (push) Has been cancelled
iOS Release / Release to TestFlight (push) Failing after 11s
iOS CI / Test (pull_request) Has been cancelled
iOS CI / Build (pull_request) Has been cancelled

This commit is contained in:
Admin
2026-03-09 16:11:16 +05:00
parent 072517135f
commit 93390fab64

View File

@@ -28,11 +28,10 @@ jobs:
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- name: Install dependencies - name: Install fastlane
working-directory: ios/LibNovel
run: | run: |
gem install bundler # Use Homebrew to install fastlane (includes all dependencies)
bundle install brew install fastlane
- name: Import signing certificate - name: Import signing certificate
env: env:
@@ -70,7 +69,7 @@ jobs:
BUILD_NUMBER: ${{ gitea.run_number }} BUILD_NUMBER: ${{ gitea.run_number }}
PROVISIONING_PROFILE_NAME: LibNovel Distribution PROVISIONING_PROFILE_NAME: LibNovel Distribution
working-directory: ios/LibNovel working-directory: ios/LibNovel
run: bundle exec fastlane beta run: fastlane beta
- name: Cleanup keychain - name: Cleanup keychain
if: always() if: always()