Files
importex-api/.gitea/workflows/deploy-dev.yml
pius-coder e671c107ca
Some checks are pending
Deploy to Production / deploy (push) Waiting to run
feat: initial ImportEx API setup with Hono + Drizzle + PostgreSQL
- 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
2026-04-15 23:27:26 +01:00

17 lines
362 B
YAML

name: Deploy to Development
on:
push:
branches:
- dev
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Trigger Coolify Deploy (Dev)
run: |
curl --request GET \
--url "${{ secrets.COOLIFY_WEBHOOK_DEV }}" \
--header "Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}" \
--fail