From c9ff097e79a13e9bd06b3f2f19e2946f3a5b7dc9 Mon Sep 17 00:00:00 2001 From: Daniel Kennedy Date: Fri, 30 Jan 2026 14:45:33 -0500 Subject: [PATCH] Update the integration test --- .github/workflows/test.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 6a417ed..758d5f1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -142,15 +142,15 @@ jobs: - name: Verify skip-decompress download run: | - $zipFile = "skip-decompress-test/Artifact-A-${{ matrix.runs-on }}.zip" - if(!(Test-Path -path $zipFile)) + $rawFile = "skip-decompress-test/artifact" + if(!(Test-Path -path $rawFile)) { - Write-Error "Expected zip file does not exist at $zipFile" + Write-Error "Expected raw artifact file does not exist at $rawFile" } - $fileInfo = Get-Item $zipFile + $fileInfo = Get-Item $rawFile if($fileInfo.Length -eq 0) { - Write-Error "Downloaded zip file is empty" + Write-Error "Downloaded artifact file is empty" } - Write-Host "Successfully downloaded artifact as zip file: $zipFile (size: $($fileInfo.Length) bytes)" + Write-Host "Successfully downloaded artifact without decompressing: $rawFile (size: $($fileInfo.Length) bytes)" shell: pwsh