Skip to content

Commit 2a5586d

Browse files
Create dotnetcore.yml
1 parent c03d815 commit 2a5586d

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/dotnetcore.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
25+
# Artifact name
26+
name:
27+
# Destination path
28+
path: # optional

0 commit comments

Comments
 (0)