Skip to content
This repository has been archived by the owner on Nov 9, 2023. It is now read-only.

Commit

Permalink
Update ci.yml
Browse files Browse the repository at this point in the history
test 3
  • Loading branch information
Xlinka committed Sep 5, 2023
1 parent a3a5f2d commit 40d2403
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ jobs:
$web = [System.Net.WebClient]::new()
$web.DownloadFile("https://www.7-zip.org/a/7zr.exe","$PWD\7zr.exe")
$cvstring = $web.DownloadString('https://cloudxstorage.blob.core.windows.net/install/Pro/Public')
$web.DownloadFile("https://assets.neos.com/install/Pro/Data/$cvstring.7z","$env:TEMP\neosupdate.7z")
$web.DownloadFile("https://assets.neos.com/install/Pro/Data/$cvstring","$env:TEMP\neosupdate.7z")
.\7zr.exe x -y "$env:TEMP\neosupdate.7z" *
Remove-Item "$env:TEMP\neosupdate.7z"
- name: Extract DLLs
shell: pwsh
run: |
$dll_file_name = "${cvstring}_YTDLP.7z" # Construct the DLL file name using cvstring
$dll_file_name = $cvstring # Directly use cvstring as the DLL file name
$sevenZipPath = Join-Path $env:GITHUB_WORKSPACE "NeosVR\7zr.exe"
$extractToPath = Join-Path $env:GITHUB_WORKSPACE "NeosVR\Neos_Data\Managed"
& $sevenZipPath x -y "$dll_file_name" -o"$extractToPath"
Expand Down

0 comments on commit 40d2403

Please sign in to comment.