aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/test.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml
index a88fb679..838f3452 100644
--- a/.github/workflows/test.yml
+++ b/.github/workflows/test.yml
@@ -279,7 +279,7 @@ jobs:
279 - name: Download zlib 279 - name: Download zlib
280 if: ${{ matrix.COMPILER == 'vs' && steps.restore-zlib-tarball.outputs.cache-hit != 'true' }} 280 if: ${{ matrix.COMPILER == 'vs' && steps.restore-zlib-tarball.outputs.cache-hit != 'true' }}
281 run: | 281 run: |
282 curl -o "${{ github.workspace }}\zlib-${{ env.LUAROCKS_DEPS_ZLIB_VER }}.tar.gz" ^ 282 curl -Lo "${{ github.workspace }}\zlib-${{ env.LUAROCKS_DEPS_ZLIB_VER }}.tar.gz" ^
283 "https://github.com/madler/zlib/releases/download/v${{ env.LUAROCKS_DEPS_ZLIB_VER }}/zlib-${{ env.LUAROCKS_DEPS_ZLIB_VER }}.tar.gz" 283 "https://github.com/madler/zlib/releases/download/v${{ env.LUAROCKS_DEPS_ZLIB_VER }}/zlib-${{ env.LUAROCKS_DEPS_ZLIB_VER }}.tar.gz"
284 284
285 - name: Save zlib tarball 285 - name: Save zlib tarball
@@ -436,7 +436,7 @@ jobs:
436 } 436 }
437 437
438 # Download the installer 438 # Download the installer
439 curl "--create-dirs" "-o" "${installerName}" "${installerUrl}"; 439 curl "--create-dirs" "-Lo" "${installerName}" "${installerUrl}";
440 440
441 # Validate sha512 checksum 441 # Validate sha512 checksum
442 $downloadedHash = Get-FileHash -Path "${installerName}" -Algorithm "SHA512" | 442 $downloadedHash = Get-FileHash -Path "${installerName}" -Algorithm "SHA512" |