feat: initial setup with Gitea Actions workflows
Some checks are pending
Deploy Admin to Production / deploy (push) Waiting to run
Deploy Admin to Development / deploy (push) Waiting to run

This commit is contained in:
pius-coder
2026-04-15 23:28:03 +01:00
commit 713175dded
3 changed files with 35 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
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