Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1070,7 +1070,12 @@ jobs:
if ! git rev-parse --abbrev-ref --symbolic-full-name @{u} >/dev/null 2>&1; then
git branch -M main || true
fi
git push -u origin HEAD:main
if git push -u origin HEAD:main; then
echo "Published Homebrew formula update to just-every/homebrew-tap."
else
echo "::warning::Could not push Homebrew formula to just-every/homebrew-tap; check GH_PAT cross-repo write access."
exit 0
fi

- name: Publish per-target npm binary packages (last)
if: steps.version.outputs.skip_push == 'true' && steps.should_publish.outputs.publish == 'true'
Expand Down