This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
name: 'Deploy to Coolify'
|
||||
description: 'Triggers a Coolify deployment using a webhook and authorization token.'
|
||||
inputs:
|
||||
webhook:
|
||||
description: 'The Coolify deploy webhook URL'
|
||||
required: true
|
||||
token:
|
||||
description: 'The authorization token for the Coolify API'
|
||||
required: true
|
||||
|
||||
runs:
|
||||
using: 'composite'
|
||||
steps:
|
||||
- name: Trigger Coolify Deployment
|
||||
shell: bash
|
||||
run: |
|
||||
curl --request GET '${{ inputs.webhook }}' --header 'Authorization: Bearer ${{ inputs.token }}'
|
||||
Reference in New Issue
Block a user