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
attempt 2
  • Loading branch information
Xlinka authored Sep 5, 2023
1 parent 43167e3 commit a3a5f2d
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,10 @@ jobs:
- name: Extract DLLs
shell: pwsh
run: |
cd NeosVR/Neos_Data/Managed
$dll_file_name = "$cvstring_YTDLP.7z"
.\7zr.exe x -y "$dll_file_name" -o"${{env.GITHUB_WORKSPACE}}/Path/To/Extract/To"
$dll_file_name = "${cvstring}_YTDLP.7z" # Construct the DLL file name using cvstring
$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 a3a5f2d

Please sign in to comment.