mirror of
https://github.com/immich-app/immich.git
synced 2026-05-18 03:10:24 +03:00
be4b1438b8
- Replace manual certificate and provisioning profile handling with fastlane match - Match automatically syncs certificates and profiles from a private git repository - Simplifies CI/CD workflow by removing 8 secrets (replaced with 2: MATCH_PASSWORD and MATCH_GIT_BASIC_AUTHORIZATION) - Add new lanes: sync_certificates and regenerate_certificates for easier maintenance - When certificates expire, just run 'fastlane regenerate_certificates' locally Benefits: - Single source of truth for code signing - Automatic certificate/profile management - Easier onboarding for new team members - Simpler secret rotation when certificates expire Required new GitHub secrets: - MATCH_PASSWORD: Encryption password for the match repository - MATCH_GIT_BASIC_AUTHORIZATION: base64(username:token) for repo access Removed secrets (no longer needed): - IOS_CERTIFICATE_P12 - IOS_CERTIFICATE_PASSWORD - IOS_PROVISIONING_PROFILE - IOS_PROVISIONING_PROFILE_SHARE_EXTENSION - IOS_PROVISIONING_PROFILE_WIDGET_EXTENSION - IOS_DEVELOPMENT_PROVISIONING_PROFILE - IOS_DEVELOPMENT_PROVISIONING_PROFILE_SHARE_EXTENSION - IOS_DEVELOPMENT_PROVISIONING_PROFILE_WIDGET_EXTENSION
73 lines
1.4 KiB
Markdown
73 lines
1.4 KiB
Markdown
fastlane documentation
|
|
----
|
|
|
|
# Installation
|
|
|
|
Make sure you have the latest version of the Xcode command line tools installed:
|
|
|
|
```sh
|
|
xcode-select --install
|
|
```
|
|
|
|
For _fastlane_ installation instructions, see [Installing _fastlane_](https://docs.fastlane.tools/#installing-fastlane)
|
|
|
|
# Available Actions
|
|
|
|
## iOS
|
|
|
|
### ios gha_testflight_dev
|
|
|
|
```sh
|
|
[bundle exec] fastlane ios gha_testflight_dev
|
|
```
|
|
|
|
iOS Development Build to TestFlight (requires separate bundle ID)
|
|
|
|
### ios gha_release_prod
|
|
|
|
```sh
|
|
[bundle exec] fastlane ios gha_release_prod
|
|
```
|
|
|
|
iOS Release to TestFlight
|
|
|
|
### ios release_manual
|
|
|
|
```sh
|
|
[bundle exec] fastlane ios release_manual
|
|
```
|
|
|
|
iOS Manual Release
|
|
|
|
### ios gha_build_only
|
|
|
|
```sh
|
|
[bundle exec] fastlane ios gha_build_only
|
|
```
|
|
|
|
iOS Build Only (no TestFlight upload)
|
|
|
|
### ios sync_certificates
|
|
|
|
```sh
|
|
[bundle exec] fastlane ios sync_certificates
|
|
```
|
|
|
|
Sync all certificates and profiles (run locally to update match repo)
|
|
|
|
### ios regenerate_certificates
|
|
|
|
```sh
|
|
[bundle exec] fastlane ios regenerate_certificates
|
|
```
|
|
|
|
Regenerate all certificates and profiles (use when expired)
|
|
|
|
----
|
|
|
|
This README.md is auto-generated and will be re-generated every time [_fastlane_](https://fastlane.tools) is run.
|
|
|
|
More information about _fastlane_ can be found on [fastlane.tools](https://fastlane.tools).
|
|
|
|
The documentation of _fastlane_ can be found on [docs.fastlane.tools](https://docs.fastlane.tools).
|