Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Ceyase committed Jan 25, 2025
1 parent bf483da commit 3eab9e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ jobs:
shell: powershell
run: |
$url = "https://dependencywalker.com/depends22_x64.zip"
$urlZip = "$env:LOCALAPPDATA\Nuitka\Nuitka\Cache\downloads\depends\x86_64\depends22_x64.zip"
New-Item -ItemType Directory -Force -Path (Split-Path $urlZip -Parent)
$targetDir = "$env:LOCALAPPDATA\Nuitka\Nuitka\Cache\downloads\depends\x86_64"
$urlZip = "$targetDir\depends22_x64.zip"
New-Item -ItemType Directory -Path $targetDir -Force | Out-Null
Invoke-WebRequest -Uri $url -OutFile $urlZip
$targetPath = "env:LOCALAPPDATA\Nuitka\Nuitka\Cache\downloads\depends\x86_64"
Expand-Archive -Path $urlZip -DestinationPath $targetPath -Force
Expand-Archive -Path $urlZip -DestinationPath $targetDir -Force
- name: Install Python dependencies
run: |
Expand Down

0 comments on commit 3eab9e1

Please sign in to comment.