diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml deleted file mode 100644 index eebdaee..0000000 --- a/.github/workflows/main.yml +++ /dev/null @@ -1,24 +0,0 @@ -name: Build+Push - -on: [push] - -jobs: - build: - - runs-on: windows-latest - - steps: - - uses: actions/checkout@v1 - - name: Run a multi-line script - run: | - cd "C:\Program Files (x86)\Microsoft Visual Studio\2019\Enterprise\MSBuild\Current\Bin\" - .\MSBuild.exe $Env:GITHUB_WORKSPACE\UpTool2.sln -p:Configuration=Release -m - .\MSBuild.exe $Env:GITHUB_WORKSPACE\UpTool2.sln -p:Configuration=Debug -m - - uses: actions/upload-artifact@v1.0.0 - with: - name: Release - path: UpTool2\bin\Release - - uses: actions/upload-artifact@v1.0.0 - with: - name: Debug - path: UpTool2\bin\Debug