Bump SharpCompress from 0.38.0 to 0.39.0 in /Source #491
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build with Release configuration | |
on: push | |
jobs: | |
Build_Release: | |
runs-on: windows-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
lfs: 'true' | |
- name: Setup MSBuild | |
uses: microsoft/setup-msbuild@v2 | |
- name: Setup NuGet | |
uses: nuget/setup-nuget@v2 | |
- name: Install dependencies | |
run: nuget restore Source\NostalgicPlayer.sln | |
- name: Build | |
run: msbuild Source\NostalgicPlayer.sln -t:rebuild -property:configuration="Release" -property:Platform="Any CPU" | |
- name: Rename binary directory | |
run: move Source\Clients\NostalgicPlayer\bin\Release\net* NostalgicPlayer-dev-build-${{github.run_number}} | |
- name: Create artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: NostalgicPlayer-dev-build-${{github.run_number}} | |
path: NostalgicPlayer-dev-build-*\ |