From f816e482723d9cde7c830cf269cac348f7cb17fa Mon Sep 17 00:00:00 2001 From: stonebig Date: Sun, 24 Aug 2025 18:36:22 +0200 Subject: [PATCH] retry pandoc --- .github/workflows/github_workflows_build-all_3.14.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/github_workflows_build-all_3.14.yml b/.github/workflows/github_workflows_build-all_3.14.yml index 9b75dea5..9460a2fe 100644 --- a/.github/workflows/github_workflows_build-all_3.14.yml +++ b/.github/workflows/github_workflows_build-all_3.14.yml @@ -164,7 +164,7 @@ jobs: # Unzip the contents to the temporary directory Write-Host "Extracting archive to temporary directory" - Expand-Archive -Path $zipPath -DestinationPath $tempDir + Expand-Archive -Path $pandocZipPath -DestinationPath $tempDir # Create the final target directory Write-Host "Creating final target directory: $targetDir" @@ -177,7 +177,7 @@ jobs: # Optional: Clean up temporary files Write-Host "Cleaning up temporary files..." Remove-Item -Path $tempDir -Recurse -Force - Remove-Item -Path $zipPath -Force + Remove-Item -Path $pandocZipPath -Force # Optional: Verify the contents Write-Host "Listing contents of $targetDir"