Build pipeline for both platforms #42

Merged
remoll merged 7 commits from feature/frontend/ios-builds into main 2024-12-14 20:49:05 +00:00
2 changed files with 9 additions and 9 deletions
Showing only changes of commit 97cb5b16aa - Show all commits

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
----