sitequest-software/Sitequest Exec
Run a shell command on a Sitequest VPS or webspace via the REST API.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| api-key | Sitequest API key with the `vps:manage` and/or `webspace:manage` scope. | yes | — |
| resource | Target resource type — `vps` or `webspace`. | yes | — |
| id | Resource ID (VPS or webspace). | yes | — |
| command | Shell command to run. Multi-line strings are passed verbatim. | yes | — |
| cwd | Working directory to execute the command in (optional). | no | "" |
| timeout | Execution timeout in seconds (default 300, max 1800). | no | 300 |
| fail-on-non-zero | If `true` (default), fail the step when the remote exit code is non-zero. | no | true |
| api-base | Override the API base URL (for staging or self-hosted). | no | https://hosting.site.quest |
Outputs
| name | description |
|---|---|
| exit-code | Remote exit code (-1 if the request itself failed). |
| stdout | Captured stdout from the remote command. |
| stderr | Captured stderr from the remote command. |
| duration-ms | End-to-end duration in milliseconds. |