quantum-space-buddies/.github/workflows/build.yaml

21 lines
428 B
YAML
Raw Normal View History

2021-11-27 04:16:21 +00:00
name: Build
2021-11-27 03:51:01 +00:00
on:
push:
branches: [dev]
pull_request:
2021-11-27 03:51:01 +00:00
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:
2021-11-27 10:33:17 +00:00
name: QSB-${{ github.ref_name }}-${{ github.run_id }}
2021-11-27 03:51:01 +00:00
path: .\QSB\Bin\Release