This commit is contained in:
2025-09-01 16:20:34 +02:00
parent c6bdd2fe2e
commit 8e3511472d
2 changed files with 6 additions and 2 deletions

View File

@@ -17,10 +17,11 @@ jobs:
deploy-docs: deploy-docs:
runs-on: windows # Ejecutar directamente en el host Windows runs-on: windows # Ejecutar directamente en el host Windows
steps: steps:
- name: Set up node - name: Get project name
shell: powershell shell: powershell
run: | run: |
nvs use latest $projectName = "${{ gitea.repository_name }}"
echo "Project Name: $projectName"
- name: Check out repository code - name: Check out repository code
uses: actions/checkout@v4 uses: actions/checkout@v4
@@ -43,6 +44,8 @@ jobs:
shell: powershell shell: powershell
run: | run: |
$projectName = "${{ gitea.repository_name }}" $projectName = "${{ gitea.repository_name }}"
echo "Project Name: $projectName"
$basePath = Join-Path "${{ secrets.DEPLOY_BASE_PATH }}" "dev" $basePath = Join-Path "${{ secrets.DEPLOY_BASE_PATH }}" "dev"
$targetPath = Join-Path $basePath $projectName $targetPath = Join-Path $basePath $projectName

View File

@@ -11,3 +11,4 @@ theme:
name: mkdocs name: mkdocs
color_mode: auto color_mode: auto
user_color_mode_toggle: true user_color_mode_toggle: true
locale: es