From c0c663e3fdc95d6d6e8ab401caa2bfb5b5872e00 Mon Sep 17 00:00:00 2001 From: spacemeowx2 Date: Sun, 21 Jun 2020 16:21:23 +0800 Subject: [PATCH] build: should be release mode on windows --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 4a605bc..0be8d4f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,13 +40,13 @@ jobs: mkdir build cd build cmake -DCMAKE_BUILD_TYPE=Release .. - MSBuild SwitchLanPlay.sln + MSBuild SwitchLanPlay.sln /t:Build /p:Configuration=Release - name: upload built files uses: actions/upload-artifact@v1 with: name: lan-play-windows - path: build/src/Debug/lan-play.exe + path: build/src/Release/lan-play.exe build-macos: runs-on: macos-latest