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): let npm-release be dispatched for a tag (#10)
Promoting v1.2.6 out of prerelease fired no workflow run, so the npm publish
never happened while the crates one did. The release event is not a reliable
trigger, and npm-release had no other way in — the only recovery was editing the
release again and hoping.
Adds workflow_dispatch with a tag input. Publishing is already idempotent, so a
re-dispatch of an published version is a no-op rather than a failure.
The release id is now looked up from the tag instead of read off
github.event.release.id, which is empty on a dispatch. One code path serves both
triggers rather than a second one that only gets exercised in an emergency.
0 commit comments