diff options
Diffstat (limited to '.github/workflows/build-msbuild.yml')
-rw-r--r-- | .github/workflows/build-msbuild.yml | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/.github/workflows/build-msbuild.yml b/.github/workflows/build-msbuild.yml index 289c665ac..ccec10dee 100644 --- a/.github/workflows/build-msbuild.yml +++ b/.github/workflows/build-msbuild.yml @@ -20,9 +20,6 @@ jobs: - name: Add msbuild to PATH uses: microsoft/setup-msbuild@v1.1 - - name: Build solution for release - run: msbuild windows/nDPI.sln -t:rebuild -property:Configuration=Release - - name: Build solution for debug run: msbuild windows/nDPI.sln -t:rebuild -property:Configuration=Debug @@ -30,5 +27,5 @@ jobs: uses: actions/upload-artifact@v2 with: name: build-artifacts - path: x64 + path: windows/bin retention-days: 14 |