Installation¶
Requirements¶
- Apple Silicon host
- macOS 26.0+
- Jeballto Agent running locally or on a reachable host
Download the controller¶
Download jeballto-actions-runner from the latest release:
https://github.com/jeballto/jeballto-actions-runner/releases/latest
If you script the install, replace the URL with the current release asset URL:
curl -L -o jeballto-actions-runner \
https://github.com/jeballto/jeballto-actions-runner/releases/latest/download/jeballto-actions-runner
chmod +x jeballto-actions-runner
Install locally¶
sudo install -m 0755 ./jeballto-actions-runner /usr/local/bin/jeballto-actions-runner
install -m 0755 copies the file and marks it executable. If you prefer plain commands:
sudo cp ./jeballto-actions-runner /usr/local/bin/jeballto-actions-runner
sudo chmod 0755 /usr/local/bin/jeballto-actions-runner
Verify the binary¶
/usr/local/bin/jeballto-actions-runner --help
Build-from-source steps live in Development.