2021-11-26 23:16:21 -05:00
|
|
|
name: Build
|
2021-11-26 22:51:01 -05:00
|
|
|
|
2023-08-09 13:31:40 -04:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "*.md"
|
|
|
|
- "LICENSE"
|
|
|
|
- ".gitignore"
|
2021-11-26 22:51:01 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: windows-latest
|
2021-11-27 05:46:39 -05:00
|
|
|
|
2022-03-27 14:02:01 -07:00
|
|
|
steps:
|
2021-11-26 22:51:01 -05:00
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: actions/setup-dotnet@v1
|
2022-02-22 19:31:13 -08:00
|
|
|
- run: dotnet build -c Debug
|
2022-03-27 14:02:01 -07:00
|
|
|
|
2021-11-26 22:51:01 -05:00
|
|
|
- uses: actions/upload-artifact@v2
|
|
|
|
with:
|
2022-08-28 20:29:25 -07:00
|
|
|
name: Raicuparta.QuantumSpaceBuddies
|
2022-02-22 19:31:13 -08:00
|
|
|
path: .\QSB\Bin\Debug
|