quantum-space-buddies/.github/workflows/build.yaml
2021-11-27 05:33:17 -05:00

21 lines
428 B
YAML

name: Build
on:
push:
branches: [dev]
pull_request:
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-${{ github.ref_name }}-${{ github.run_id }}
path: .\QSB\Bin\Release