Some checks are pending
Deploy to Production / deploy (push) Waiting to run
- Hono server with CORS and logging middleware - Drizzle ORM with PostgreSQL schema (users table) - Environment config with Zod validation - Dockerfile for production deployment - Gitea Actions workflows for dev/main deployment to Coolify - Health check route
17 lines
364 B
YAML
17 lines
364 B
YAML
name: Deploy to Production
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Trigger Coolify Deploy (Prod)
|
|
run: |
|
|
curl --request GET \
|
|
--url "${{ secrets.COOLIFY_WEBHOOK_PROD }}" \
|
|
--header "Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}" \
|
|
--fail |