From 1effa3a9098dbad3daf097c18d3c57cf79c23d50 Mon Sep 17 00:00:00 2001 From: Josh Matthews Date: Tue, 25 May 2021 19:19:58 -0400 Subject: [PATCH] Use different download/unpacking mechanism. --- .github/workflows/nightly.yml | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index ea9aec313b6..55f6caed80a 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -73,16 +73,19 @@ jobs: fetch-depth: 2 - name: Copy to C drive run: cp D:\a C:\ -Recurse - - uses: engineerd/configurator@v0.0.6 + - uses: suisei-cn/actions-download-file@v1 + id: wix311-binaries + name: Download wix binaries with: - name: "candle.exe" url: "https://github.com/wixtoolset/wix3/releases/download/wix3111rtm/wix311-binaries.zip" - pathInArchive: "candle.exe" - - uses: engineerd/configurator@v0.0.6 + target: "C:\\wix311-binaries.zip" + - uses: DuckSoft/extract-7z-action@v1.0 + name: Extract wix binaries with: - name: "light.exe" - url: "https://github.com/wixtoolset/wix3/releases/download/wix3111rtm/wix311-binaries.zip" - pathInArchive: "light.exe" + pathSource: "C:\\wix311-binaries.zip" + pathTarget: "C:\\wix" + - name: Add binaries to path + run: echo "C:\\wix" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append - name: Bootstrap working-directory: "C:\\a\\servo\\servo" run: |