From 91131302e6c87f732d52c63ea65ff7c893b5248f Mon Sep 17 00:00:00 2001 From: Hammer Date: Fri, 30 Jan 2026 04:25:30 +0000 Subject: [PATCH] fix: use compose.deploy with DOKPLOY_COMPOSE_ID for deploy step --- .gitea/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 6004e1a1..9a8cb4a4 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -42,8 +42,8 @@ jobs: steps: - name: Deploy to Dokploy run: | - curl -fsSL -X POST "${{ secrets.DOKPLOY_URL }}/api/application.deploy" \ + curl -fsSL -X POST "${{ secrets.DOKPLOY_URL }}/api/compose.deploy" \ -H "Content-Type: application/json" \ -H "x-api-key: ${{ secrets.DOKPLOY_API_TOKEN }}" \ - -d '{"applicationId": "${{ secrets.DOKPLOY_APP_ID }}"}' + -d '{"composeId": "${{ secrets.DOKPLOY_COMPOSE_ID }}"}' echo "Deploy triggered on Dokploy"