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
The CLI itself behaves correctly there — exit 0, ok: true, build tag applied. The red X is the action rejecting status: null. I'm fixing the action separately.
Two things made this land quietly: it went out as a minor bump, and setup-apify-cli-action defaults to version: latest, so consumers got a new output format without opting into anything. --json is the machine-facing contract; it needs the same care as a function signature.
apify push --jsonprinted the raw build object until 1.7.x — top-levelid,buildNumber,status. Since feat(push): add final status block and structured JSON output #1199 it prints an{ ok, operation, actor, build }envelope. That shipped to stable in 1.8.0.apify/push-actor-actionreads.id,.buildNumberand.status, so all three of its outputs are nownulland it fails every successful push: https://github.com/janbuchar/menicka-crawler/actions/runs/32272220131/job/96136623842ok: true, build tag applied. The red X is the action rejectingstatus: null. I'm fixing the action separately.setup-apify-cli-actiondefaults toversion: latest, so consumers got a new output format without opting into anything.--jsonis the machine-facing contract; it needs the same care as a function signature.apify pushsometimes fail withRUNNINGstatus #1150 — that one reported the same action error withstatus: RUNNINGon 1.7.x, which was a genuine not-yet-terminal race.