fix(ci): install node before checkout in the android release job #10
Loading…
Reference in a new issue
No description provided.
Delete branch "test"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
actions/checkout is a JavaScript action, so the runner needs a node to
execute it with. eclipse-temurin:21-jdk has none, and the failure names
"node" rather than the action, which points at the container instead of at
the step that needs it.
deploy.yml already installs node ahead of its checkout for the same reason;
this job only installed git, unzip, curl and jq. Also adds ca-certificates,
since the next step fetches the SDK over HTTPS.
Co-Authored-By: Claude Opus 5 noreply@anthropic.com