21 lines
563 B
Markdown
21 lines
563 B
Markdown
# Deploy to Coolify
|
|
|
|
Triggers a remote Coolify redeployment for a service/app using the Coolify webhook trigger URL and API access token.
|
|
|
|
## Inputs
|
|
|
|
| Name | Description | Required | Default |
|
|
| :--- | :--- | :--- | :--- |
|
|
| `webhook` | The webhook URL to trigger the deployment. | Yes | |
|
|
| `token` | The bearer token to authorize the webhook call. | Yes | |
|
|
|
|
## Example Usage
|
|
|
|
```yaml
|
|
- name: Deploy to Coolify
|
|
uses: rodydavis/shared-actions/coolify-deploy@main
|
|
with:
|
|
webhook: ${{ secrets.COOLIFY_WEBHOOK }}
|
|
token: ${{ secrets.COOLIFY_TOKEN }}
|
|
```
|