From 541b9471b5761decd8bff6c97a362ad89a2cdd4b Mon Sep 17 00:00:00 2001 From: rdb Date: Sun, 12 Dec 2021 18:40:31 +0100 Subject: [PATCH] workflow: Use thirdparty packages for 1.10.10 instead of 1.10.9 --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 00722c01e5..44849afceb 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,16 +20,16 @@ jobs: shell: powershell run: | $wc = New-Object System.Net.WebClient - $wc.DownloadFile("https://www.panda3d.org/download/panda3d-1.10.9/panda3d-1.10.9-tools-win64.zip", "thirdparty-tools.zip") + $wc.DownloadFile("https://www.panda3d.org/download/panda3d-1.10.10/panda3d-1.10.10-tools-win64.zip", "thirdparty-tools.zip") Expand-Archive -Path thirdparty-tools.zip - Move-Item -Path thirdparty-tools/panda3d-1.10.9/thirdparty -Destination . + Move-Item -Path thirdparty-tools/panda3d-1.10.10/thirdparty -Destination . - name: Get thirdparty packages (macOS) if: runner.os == 'macOS' run: | - curl -O https://www.panda3d.org/download/panda3d-1.10.9/panda3d-1.10.9-tools-mac.tar.gz - tar -xf panda3d-1.10.9-tools-mac.tar.gz - mv panda3d-1.10.9/thirdparty thirdparty - rmdir panda3d-1.10.9 + curl -O https://www.panda3d.org/download/panda3d-1.10.10/panda3d-1.10.10-tools-mac.tar.gz + tar -xf panda3d-1.10.10-tools-mac.tar.gz + mv panda3d-1.10.10/thirdparty thirdparty + rmdir panda3d-1.10.10 (cd thirdparty/darwin-libs-a && rm -rf rocket) - name: Set up Python 3.9 uses: actions/setup-python@v2