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
fix(ci): publish to pub.dev via workflow_dispatch from release.yml
publish-flutter.yml originally listened on push:tags, but the bump
commit's [skip ci] suppresses tag-push events. Switching to release
events solved the trigger but broke OIDC auth — pub.dev only mints
publish tokens for push or workflow_dispatch events.
Switch publish-flutter.yml to workflow_dispatch with a tag input,
and have release.yml dispatch it via gh CLI after the per-SDK tag
exists. workflow_dispatch is immune to skip-ci AND accepted by
pub.dev's OIDC trust policy.