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"