{"id":36967446,"url":"https://github.com/benbristow/coolify-deploy-action","last_synced_at":"2026-01-13T20:04:04.463Z","repository":{"id":329036001,"uuid":"1117862075","full_name":"benbristow/coolify-deploy-action","owner":"benbristow","description":"Coolify Deploy Action","archived":false,"fork":false,"pushed_at":"2025-12-16T23:59:45.000Z","size":13,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-12-20T13:56:35.224Z","etag":null,"topics":["actions","coolify","github-actions"],"latest_commit_sha":null,"homepage":"","language":null,"has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/benbristow.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null},"funding":{"github":"benbristow"}},"created_at":"2025-12-16T23:30:20.000Z","updated_at":"2025-12-16T23:59:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/benbristow/coolify-deploy-action","commit_stats":null,"previous_names":["benbristow/coolify-deploy-action"],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/benbristow/coolify-deploy-action","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benbristow%2Fcoolify-deploy-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benbristow%2Fcoolify-deploy-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benbristow%2Fcoolify-deploy-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benbristow%2Fcoolify-deploy-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/benbristow","download_url":"https://codeload.github.com/benbristow/coolify-deploy-action/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/benbristow%2Fcoolify-deploy-action/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28399517,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T14:36:09.778Z","status":"ssl_error","status_checked_at":"2026-01-13T14:35:19.697Z","response_time":56,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["actions","coolify","github-actions"],"created_at":"2026-01-13T20:04:03.704Z","updated_at":"2026-01-13T20:04:04.456Z","avatar_url":"https://github.com/benbristow.png","language":null,"funding_links":["https://github.com/sponsors/benbristow"],"categories":[],"sub_categories":[],"readme":"# Coolify Deploy Action\n\nA reusable GitHub Action to trigger deployments on Coolify.\n\n## Usage\n\n### Basic Example\n\n```yaml\nname: Deploy to Coolify\n\non:\n  push:\n    branches:\n      - main\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v4\n      \n      - name: Trigger Coolify deployment\n        uses: benbristow/coolify-deploy-action@v1\n        with:\n          token: ${{ secrets.COOLIFY_DEPLOY_TOKEN }}\n          base_url: 'https://coolify.example.com'\n          application_uuid: 'your-application-uuid-here'\n          force: false\n```\n\n### Force Deployment\n\nTo force a deployment (useful for manual triggers or when you want to bypass certain checks):\n\n```yaml\n- name: Trigger Coolify deployment\n  uses: benbristow/coolify-deploy-action@v1\n  with:\n    token: ${{ secrets.COOLIFY_DEPLOY_TOKEN }}\n    base_url: 'https://coolify.example.com'\n    application_uuid: 'your-application-uuid-here'\n    force: true\n```\n\n### Using GitHub Actions Secrets\n\nFor better security, you can store all sensitive values as GitHub Actions secrets:\n\n```yaml\nname: Deploy to Coolify\n\non:\n  push:\n    branches:\n      - main\n\njobs:\n  deploy:\n    runs-on: ubuntu-latest\n    steps:\n      - name: Checkout code\n        uses: actions/checkout@v4\n      \n      - name: Trigger Coolify deployment\n        uses: benbristow/coolify-deploy-action@v1\n        with:\n          token: ${{ secrets.COOLIFY_DEPLOY_TOKEN }}\n          base_url: ${{ secrets.COOLIFY_BASE_URL }}\n          application_uuid: ${{ secrets.COOLIFY_APPLICATION_UUID }}\n          force: false\n```\n\n## Inputs\n\n| Input | Description | Required | Default |\n|-------|-------------|----------|---------|\n| `token` | Coolify API token (Bearer token) | Yes | - |\n| `base_url` | Coolify base URL (e.g., `https://coolify.example.com`) | Yes | - |\n| `application_uuid` | Application UUID to deploy (e.g., `{application-uuid}`) | Yes | - |\n| `force` | Force deployment (boolean: `true`/`false`) | No | `false` |\n\n## Config\n\n### Secrets\n\nYou can store sensitive values as GitHub Actions secrets. At minimum, you need:\n\n- `COOLIFY_DEPLOY_TOKEN`: Your Coolify API bearer token (required)\n\n**Optional secrets** (for better security):\n- `COOLIFY_BASE_URL`: Your Coolify instance URL (e.g., `https://coolify.example.com`)\n- `COOLIFY_APPLICATION_UUID`: Your application UUID\n\n### How to get your Coolify Deploy Token  \n\n1. Navigate to the Keys \u0026 Tokens page, API tokens tab - https://your-coolify-instance.com/security/api-tokens\n2. Check 'deploy' permission\n3. Copy the token, store this somewhere safe.\n4. Add it as a secret in your GitHub repository settings\n\n### How to get your Application UUID\n\nThe Application UUID is a unique identifier for your application in Coolify.\n\n1. Navigate to your application in Coolify\n2. The Application UUID is visible in the URL: `https://your-coolify-instance.com/project/{project-uuid}/environment/{environment-uuid}/application/{application-uuid}`\n3. Copy the application UUID part (the last segment after `/application/`, e.g., `{application-uuid}`)\n\n## Contributing\n\nContributions are welcome! Please open an issue or pull request.\n\n## License\n\nThis project is licensed under the terms of the GNU General Public License version 3 or later. See the [LICENSE](LICENSE) file for details.\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenbristow%2Fcoolify-deploy-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbenbristow%2Fcoolify-deploy-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbenbristow%2Fcoolify-deploy-action/lists"}