From 4907a021a44466f42f97e12ba910a62d43b67be7 Mon Sep 17 00:00:00 2001 From: Mauricio Siu Date: Sun, 30 Nov 2025 01:09:38 -0600 Subject: [PATCH] fix: update OpenAPI sync workflow to copy file to correct path - Changed the destination path for copying openapi.json to the apps/docs/public directory to ensure proper deployment of the OpenAPI documentation. --- .github/workflows/sync-openapi-docs.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/sync-openapi-docs.yml b/.github/workflows/sync-openapi-docs.yml index d9784128c..90781c2e7 100644 --- a/.github/workflows/sync-openapi-docs.yml +++ b/.github/workflows/sync-openapi-docs.yml @@ -51,7 +51,7 @@ jobs: # Copia el openapi.json al website (sobrescribe) mkdir -p public - cp -f ../openapi.json public/openapi.json + cp -f ../openapi.json apps/docs/public/openapi.json # Configura git git config user.name "Dokploy Bot"