You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
chore: use the shared setup-flutter action in the android build
The android workflow was setting up flutter its own way with
subosito/flutter-action plus hand-rolled cache restore/save steps,
duplicating what .github/actions/setup-flutter already does.
Beyond the duplication, the hand-rolled cache never actually hit. Its
keys were only ever written by this workflow, which runs on tags, and a
tag push gets its own cache scope - so every release missed on restore
and saved to a scope no later run could read. setup-flutter's keys are
already warmed into master's scope by pr-check, so a release now picks
them up.
Also drops the second way of installing flutter from the repo. If fvm
is going away it should go away everywhere at once, not one workflow at
a time.
Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01Ks57GnHLcu8SQsUpGWKm8y
0 commit comments