We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c03d815 commit 2a5586dCopy full SHA for 2a5586d
.github/workflows/dotnetcore.yml
@@ -0,0 +1,28 @@
1
+name: .NET Core
2
+
3
+on: [push]
4
+push:
5
+ branches:
6
+ - master
7
+ - release/*
8
+jobs:
9
+ build:
10
11
+ runs-on: windows-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+ - name: Setup .NET Core
16
+ uses: actions/setup-dotnet@v1
17
+ with:
18
+ dotnet-version: 2.2.108
19
+ - name: Build with dotnet
20
+ run: dotnet build --configuration Release
21
22
+- name: Download artifact
23
+ uses: actions/download-artifact@v1.0.0
24
25
+ # Artifact name
26
+ name:
27
+ # Destination path
28
+ path: # optional
0 commit comments