From bc5eb62935b70fad4d8e24160e733b241b8c554e Mon Sep 17 00:00:00 2001 From: Chris Yeninas <844685+PhantomGamers@users.noreply.github.com> Date: Fri, 26 Nov 2021 22:51:01 -0500 Subject: [PATCH] add github workflow devbuilds.yaml --- .github/workflows/devbuilds.yaml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/devbuilds.yaml diff --git a/.github/workflows/devbuilds.yaml b/.github/workflows/devbuilds.yaml new file mode 100644 index 00000000..d14d27bf --- /dev/null +++ b/.github/workflows/devbuilds.yaml @@ -0,0 +1,21 @@ +name: Build from dev + +on: + push: + branches: [dev] + workflow_dispatch: + +jobs: + + build: + runs-on: windows-latest + steps: + - uses: actions/checkout@v2 + - uses: actions/setup-dotnet@v1 + with: + dotnet-version: "5.0.x" + - run: dotnet build -c Release + - uses: actions/upload-artifact@v2 + with: + name: QSB-prerelease + path: .\QSB\Bin\Release \ No newline at end of file