From c6bdd2fe2e1cccff8119e1992368426a8e9f4544 Mon Sep 17 00:00:00 2001 From: Manuel Date: Mon, 1 Sep 2025 16:15:27 +0200 Subject: [PATCH] docs --- .gitea/workflows/deploy-docs-dev.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/deploy-docs-dev.yaml b/.gitea/workflows/deploy-docs-dev.yaml index b0a27fc..b97ec42 100644 --- a/.gitea/workflows/deploy-docs-dev.yaml +++ b/.gitea/workflows/deploy-docs-dev.yaml @@ -2,12 +2,12 @@ name: Deploy Documentation Local run-name: Deploying ${{ gitea.repository }} docs locally on: - workflow_dispatch: + push: branches: - dev paths: - "docs/**" - push: + workflow_dispatch: branches: - dev paths: @@ -53,7 +53,7 @@ jobs: New-Item -ItemType Directory -Path $targetPath -Force # Copiar archivos construidos - Copy-Item -Path "build\*" -Destination $targetPath -Recurse -Force + Copy-Item -Path "..\build\*" -Destination $targetPath -Recurse -Force Write-Host "Documentation deployed to: $targetPath"