From f9266246b779edd805adaf184b0f1b625e2f905f Mon Sep 17 00:00:00 2001 From: Jack Date: Sun, 21 Jun 2020 14:30:26 +0800 Subject: [PATCH] Update build_master workflow. --- .github/workflows/build_master.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_master.yml b/.github/workflows/build_master.yml index 79c45d7..2cf9ff8 100644 --- a/.github/workflows/build_master.yml +++ b/.github/workflows/build_master.yml @@ -42,6 +42,7 @@ jobs: - dist: win_x86_64 os: windows-latest platform: x64 + configuration: Release steps: - uses: actions/checkout@v1 - name: Add msbuild to PATH @@ -49,9 +50,9 @@ jobs: - name: Clone submodules run: git submodule init && git submodule update - name: Compile ${{ matrix.prog }} - run: msbuild .\build\visualstudio\${{ matrix.prog }}.sln /p:configuration=release /p:platform=${{ matrix.platform }} + run: msbuild .\build\visualstudio\${{ matrix.prog }}.sln /p:configuration=${{ matrix.configuration }} /p:platform=${{ matrix.platform }} - uses: actions/upload-artifact@v2 with: name: ${{ matrix.prog }}-${{ matrix.dist }} - path: .\build\visualstudio\x64\Release\${{ matrix.prog }}.exe + path: .\build\visualstudio\${{ matrix.platform }}\${{ matrix.configuration }}\${{ matrix.prog }}.exe