From 548feaeb71a0bf01fc6d0f1b63c76ac45cfa4fe5 Mon Sep 17 00:00:00 2001 From: Felipe Canin Novaes Date: Thu, 19 Mar 2026 23:02:33 -0300 Subject: [PATCH] feat: add CI workflow for deployment to Coolify --- .gitea/workflows/ci.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .gitea/workflows/ci.yml diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml new file mode 100644 index 0000000..9078e69 --- /dev/null +++ b/.gitea/workflows/ci.yml @@ -0,0 +1,12 @@ +name: Deploy to Coolify + +on: [push] + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - name: Deploy to Coolify + run: | + curl —-request GET '${{ secrets.COOLIFY_WEBHOOK }}' --header + ‘Authorization: Bearer ${{ secrets.COOLIFY_TOKEN }}' \ No newline at end of file