Documentation
README
Release Card
ccpocket のリリース告知用画像を、最新タグとストア用リリースノートから生成する。
ワークフロー
1. 最新リリース情報を確認
最新タグと現在のアプリバージョンを確認する。
git tag -l 'ios/v*' 'android/v*' 'macos/v*' --sort=-v:refname | head -10
grep '^version:' apps/mobile/pubspec.yaml
原則として最新タグの vX.Y.Z をカードのバージョンに使う。タグが ios/v1.86.1+148 のように build number を含む場合、画像表示とファイル名には 1.86.1 を使う。
タグと apps/mobile/pubspec.yaml のバージョンが一致しない、複数プラットフォームの最新タグがずれている、またはどのバージョンで作るべきか判断できない場合は、作業前にユーザーへ確認する。
2. リリースノートを確認
英語・日本語のリリースノートを読む。
sed -n '1,160p' apps/mobile/fastlane/metadata/en-US/release_notes.txt
sed -n '1,160p' apps/mobile/fastlane/metadata/ja/release_notes.txt
必要に応じて最新タグとの差分も確認する。
git log <latest-tag>..HEAD --oneline -- apps/mobile/ CHANGELOG.md
This is the opening of the README. Read the full README on GitHub.