We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 10c21ab commit eae2ab8Copy full SHA for eae2ab8
.github/workflows/build.yaml
@@ -12,7 +12,8 @@ jobs:
12
run: |
13
$wc = New-Object System.Net.WebClient
14
$wc.DownloadFile("https://www.panda3d.org/download/panda3d-1.10.14/panda3d-1.10.14-tools-win64.zip", "thirdparty-tools.zip")
15
- Expand-Archive -Path thirdparty-tools.zip
+ Add-Type -Assembly "System.IO.Compression.Filesystem"
16
+ [System.IO.Compression.ZipFile]::ExtractToDirectory("thirdparty-tools.zip", "thirdparty-tools")
17
Move-Item -Path thirdparty-tools/panda3d-1.10.14/thirdparty -Destination .
18
19
- name: Build Panda
0 commit comments