From c2c8291fb7b40f368cccd0bea2ca8eeac87e4cd3 Mon Sep 17 00:00:00 2001 From: Geoff Evans Date: Sun, 4 Oct 2020 14:59:50 -0700 Subject: [PATCH] update github action --- .github/workflows/build.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8097c77..e1ef355 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,6 +23,9 @@ jobs: cd ${{ github.workspace }} cmd.exe /c call build_wx.bat debug + - name: Setup MSBuild + uses: microsoft/setup-msbuild@v1.0.1 + - name: Build PowerMateTray Debug run: | MSBuild.exe PowerMateTray.sln -p:Configuration=Debug @@ -42,6 +45,9 @@ jobs: cd ${{ github.workspace }} cmd.exe /c call build_wx.bat release + - name: Setup MSBuild + uses: microsoft/setup-msbuild@v1.0.1 + - name: Build PowerMateTray Release run: | MSBuild.exe PowerMateTray.sln -p:Configuration=Release \ No newline at end of file