Files
comaps/docs/RELEASE_MANAGEMENT.md
Konstantin Pastbin e3e4a1985a Organic Maps sources as of 02.04.2025 (fad26bbf22ac3da75e01e62aa01e5c8e11861005)
To expand with full Organic Maps and Maps.ME commits history run:
  git remote add om-historic [om-historic.git repo url]
  git fetch --tags om-historic
  git replace squashed-history historic-commits
2025-05-08 21:10:51 +07:00

76 lines
1.4 KiB
Markdown

# Release Management
## Apple App Store
### Upload metadata and screenshots to the App Store
Use [GitHub Actions](../.github/workflows/ios-release.yaml).
### Check metadata
Use [GitHub Actions](../.github/workflows/ios-check.yaml).
Local check:
```bash
./tools/python/check_store_metadata.py ios
```
### Downloading screenshots from the App Store
Get xcode/keys/appstore.json - App Store API Key.
Get screenshots/ - a repository with screenshots.
Download metadata:
```bash
cd xcode
./fastlane download_metadata
```
Download screenshots:
```bash
cd xcode
./fastlane download_screenshots
```
## Google Play
### Upload metadata and screenshots to Google Play
Use [GitHub Actions](../.github/workflows/android-release-metadata.yaml).
### Uploading a new version to Google Play
Use [GitHub Actions](../.github/workflows/android-release.yaml).
Promote version to "Production" manually in Google Play Console.
### Uploading a new version to Huawei AppGallery
Use [GitHub Actions](../.github/workflows/android-release.yaml).
### Checking metadata
Use [GitHub Actions](../.github/workflows/android-check.yaml).
Checking locally:
```bash
./tools/python/check_store_metadata.py android
```
### Downloading metadata and screenshots from Google Play
Get `android/google-play.json` - Google Play API Key.
Get `screenshots/` - a repository with screenshots.
Download metadata:
```bash
./tools/android/download_googleplay_metadata.sh
```