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 committed Sep 5, 2023
1 parent 011bcca commit 43167e3
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ on:
env:
SOLUTION_FILE_PATH: NEOSPlus.sln
BUILD_CONFIGURATION: Release

jobs:
build:

runs-on: windows-latest

steps:
Expand All @@ -32,8 +32,12 @@ jobs:
$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: |
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"
- name: Build
working-directory: ${{env.GITHUB_WORKSPACE}}
# Add additional options to the MSBuild command line here (like platform or verbosity level).
# See https://docs.microsoft.com/visualstudio/msbuild/msbuild-command-line-reference
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}
run: msbuild /m /p:Configuration=${{env.BUILD_CONFIGURATION}} ${{env.SOLUTION_FILE_PATH}}

0 comments on commit 43167e3

Please sign in to comment.