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
  • Loading branch information
Xlinka authored Sep 5, 2023
1 parent 40d2403 commit ff2d543
Showing 1 changed file with 2 additions and 8 deletions.
10 changes: 2 additions & 8 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,10 @@ 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","$env:TEMP\neosupdate.7z")
Write-Host "CVString is $cvstring" # Debugging line
$web.DownloadFile("https://assets.neos.com/install/Pro/Data/$cvstring.7z","$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 # 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"
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}

0 comments on commit ff2d543

Please sign in to comment.