Files
importex-admin/.gitea/workflows/deploy-prod.yml
pius-coder 713175dded
Some checks are pending
Deploy Admin to Production / deploy (push) Waiting to run
Deploy Admin to Development / deploy (push) Waiting to run
feat: initial setup with Gitea Actions workflows
2026-04-15 23:28:03 +01:00

17 lines
370 B
YAML

name: Deploy Admin 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