some more fastlane fixes
Some checks failed
Build and deploy the backend to staging / Build and push image (pull_request) Successful in 1m52s
Build and release debug APK / Build APK (pull_request) Failing after 3m50s
Build and deploy the backend to staging / Deploy to staging (pull_request) Successful in 16s

This commit is contained in:
Remy Moll 2024-12-14 19:54:28 +01:00
parent a4a70d56c6
commit 97cb5b16aa
2 changed files with 9 additions and 9 deletions

View File

@ -74,7 +74,7 @@ platform :ios do
# sign the app (whithout rebuilding it)
build_app(
skip_build_archive: true,
archive_path: "../build/ios/archive/Runner.xarchive"
archive_path: "../build/ios/archive/Runner.xcarchive"
)
upload_to_app_store(

View File

@ -23,21 +23,21 @@ For _fastlane_ installation instructions, see [Installing _fastlane_](https://do
Load the App Store Connect API token
### ios beta
```sh
[bundle exec] fastlane ios beta
```
Push a new beta build to TestFlight
### ios deploy_testing
```sh
[bundle exec] fastlane ios deploy_testing
```
Deploy a new version to closed testing (testflight)
### ios deploy_release
```sh
[bundle exec] fastlane ios deploy_release
```
Deploy a new version as a full release
----