mirror of
https://github.com/run-llama/workflows-py.git
synced 2026-07-19 16:53:35 -04:00
fdc1c48b01
* fix(ci): publish operator image and push tags explicitly - Mark llama-agents-operator as non-private so the release pipeline includes its docker image in the publish plan. - Replace 'git push --tags' (which silently reported 'Everything up-to-date' and left new tags on the local runner) with an explicit verbose push of the tags created by 'changeset tag' at HEAD. * fix(ci): use changesets/action in publish mode for tags + releases Replaces the bespoke 'changeset tag + git push' step with a changesets/action call in publish mode. The publish script is 'pnpm exec changeset tag' — the fan-out jobs already handled the real publishing. The action parses 'New tag: pkg@version' lines from the publish output, pushes each tag, and creates a GitHub Release populated from the package's CHANGELOG.md entry. This restores the per-package release behavior that was in place before the publish-pipeline refactor (#489) and also fixes the silent 'Everything up-to-date' tag-push regression. * Update docker image publication details for arm