Skip to content

Commit afe4116

Browse files
authoredOct 8, 2019
added aspnetcore deploy workflow
1 parent 14f0c74 commit afe4116

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 

‎.github/workflows/aspnetcore.yml

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: ASP.NET Core CI
2+
3+
on: [push]
4+
5+
jobs:
6+
build:
7+
8+
runs-on: windows-latest
9+
10+
steps:
11+
- uses: actions/checkout@v1
12+
- name: Setup .NET Core
13+
uses: actions/setup-dotnet@v1
14+
with:
15+
dotnet-version: 2.2.108
16+
- name: Build with dotnet
17+
run: dotnet build --configuration Release

0 commit comments

Comments
 (0)