From a52461750632b47a52c43be08f55a0b487fbd51a Mon Sep 17 00:00:00 2001 From: Nguyen Thanh Quang Date: Thu, 14 Oct 2021 13:45:59 +0700 Subject: [PATCH] Update build.yml --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 152047a..a66674a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -15,12 +15,12 @@ jobs: uses: microsoft/setup-msbuild@v1.0.2 - name: Restore NuGet run: nuget restore TitlebarZ.sln - - name: Change CWD to TitlebarZ.WPF - run: cd TitlebarZ.WPF - name: Run MSBuild - run: msbuild TitlebarZ.WPF.csproj /p:Configuration=Release + run: | + cd TitlebarZ.WPF + msbuild TitlebarZ.WPF.csproj /p:Configuration=Release - name: Create release uses: ncipollo/release-action@v1.8.10 with: - artifacts: "bin/Release/TitlebarZ.exe" + artifacts: "TitlebarZ.WPF/bin/Release/TitlebarZ.exe" token: ${{ secrets.GITHUB_TOKEN }}