|
@@ -0,0 +1,23 @@
|
|
|
+on:
|
|
|
+ push:
|
|
|
+ branches: [ master ]
|
|
|
+ pull_request:
|
|
|
+ branches: [ master ]
|
|
|
+
|
|
|
+jobs:
|
|
|
+ build:
|
|
|
+ runs-on: windows-latest
|
|
|
+
|
|
|
+ steps:
|
|
|
+ - uses: actions/checkout@v2
|
|
|
+
|
|
|
+ - uses: actions/setup-dotnet@v1
|
|
|
+ with:
|
|
|
+ dotnet-version: 5.0.x
|
|
|
+
|
|
|
+ - name: Build
|
|
|
+ run: dotnet build -c Release
|
|
|
+
|
|
|
+ - uses: actions/upload-artifact@v2
|
|
|
+ with:
|
|
|
+ path: 'DesktopClock/bin/Release/'
|