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
git commit -m "ci(graph-node): update image to ${{ steps.bump.outputs.tag }}"
161
+
for attempt in 1 2 3; do
162
+
if git push origin main; then
163
+
echo "Pushed on attempt $attempt."
164
+
exit 0
165
+
fi
166
+
echo "Push rejected; rebasing on main and retrying..."
167
+
git pull --rebase origin main || {
168
+
echo "::error::Rebase hit a conflict on apps/graph-node/base/kustomization.yaml — manual resolution needed. Image ${IMAGE}:${{ steps.bump.outputs.tag }} is already on Docker Hub."
169
+
exit 1
170
+
}
171
+
done
172
+
echo "::error::Failed to push after 3 attempts. Image ${IMAGE}:${{ steps.bump.outputs.tag }} is on Docker Hub; bump the manifest manually."
0 commit comments