From ee1ca0e99421fd399450335a3dc8d63bed2f5aec Mon Sep 17 00:00:00 2001 From: "K. S. Ernest (iFire) Lee" Date: Sun, 6 Jun 2021 19:07:30 -0700 Subject: [PATCH] USe curl. --- .github/workflows/build-win-10.yml | 27 ++++++++++++++++++--------- 1 file changed, 18 insertions(+), 9 deletions(-) diff --git a/.github/workflows/build-win-10.yml b/.github/workflows/build-win-10.yml index 2e53ffe..69d134d 100644 --- a/.github/workflows/build-win-10.yml +++ b/.github/workflows/build-win-10.yml @@ -37,17 +37,26 @@ jobs: run: | cinst zstandard shell: bash - - - name: Download FBXSDK Windows - uses: actions/checkout@v2 - with: - repository: V-Sekai/FBXSDK-Windows - path: sdk - - - name: Decompress sdk + + - name: install FileDownload run: | - zstd -d -r --rm sdk > nul + curl -O 'https://github.com/V-Sekai/FBXSDK-Windows/archive/2020.2.tar.gz' shell: cmd + + - name: install 7z expand + run: | + 7z e 2020.2.tar.gz + shell: cmd + + - name: install 7z extract + run: | + 7z x 2020.2.tar + shell: cmd + + - name: move + run: | + move -v .\FBXSDK-Windows-2020.2\sdk\ . + shell: pwsh - name: Add conan remote run: |