From 40d2403f725ed0b0ae387a2d8305a22343fe5d5c Mon Sep 17 00:00:00 2001 From: xLinka Date: Tue, 5 Sep 2023 22:18:26 +0100 Subject: [PATCH] Update ci.yml test 3 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2ffa145..28dc1d6 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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"