diff --git a/.github/workflows/Build.yml b/.github/workflows/Build.yml new file mode 100644 index 00000000000..d4ccbcfd30b --- /dev/null +++ b/.github/workflows/Build.yml @@ -0,0 +1,22 @@ +name: Build WPF + +on: [push] + +jobs: + build: + + runs-on: windows-latest + + steps: + - uses: actions/checkout@v1 + - name: Install Nuget + uses: nuget/setup-nuget@v1 + with: + nuget-version: '5.x' + - name: Build + run: .\build.cmd -pack -ci -configuration Release -prepareMachine /p:Platform=x86 + - name: Push + uses: actions/upload-artifact@v1 + with: + name: WPF + path: ./artifacts/packages/Release/NonShipping \ No newline at end of file