diff --git a/.claude/skills/release/SKILL.md b/.claude/skills/release/SKILL.md index a9b834e9..22b1ef7f 100644 --- a/.claude/skills/release/SKILL.md +++ b/.claude/skills/release/SKILL.md @@ -72,13 +72,13 @@ bats tools/release/bump.bats | Tag suffix | FOSS APK | GitHub release | Fastlane lane | Play track | Rollout | |---|---|---|---|---|---| -| `-beta*` | `assembleFossBeta` | pre-release | `beta` | `beta` | 10% | -| `-rc*` | `assembleFossRelease` | full release | `production` | **`beta`** | 10% | +| `-beta*` | `assembleFossBeta` | pre-release | `beta` | `beta` | 100% | +| `-rc*` | `assembleFossRelease` | full release | `production` | **`beta`** | 100% | `release-tag.yml` accepts only `v-rcN` or `v-betaN` — any other suffix fails `validate-tag` before a build starts. There is no third channel. -`lane :production` in `Fastfile` uploads to Play's **beta** track at 10% — manually promoted to production via Play Console. +`lane :production` in `Fastfile` uploads to Play's **beta** track at 100% — manually promoted to production via Play Console. ## Rollback diff --git a/fastlane/Fastfile b/fastlane/Fastfile index b7d720d7..6149ac69 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -25,7 +25,7 @@ platform :android do sh "bash ./remove_unsupported_languages.sh" supply( track: 'beta', - rollout: '0.10', + rollout: '1.0', package_name: 'eu.darken.capod', skip_upload_changelogs: 'false', skip_upload_apk: 'true', @@ -40,7 +40,7 @@ platform :android do sh "bash ./remove_unsupported_languages.sh" supply( track: 'beta', - rollout: '0.10', + rollout: '1.0', package_name: 'eu.darken.capod', skip_upload_changelogs: 'false', skip_upload_apk: 'true',