Skip to content

Commit 90018f1

Browse files
committed
Initial commit
0 parents  commit 90018f1

20 files changed

+1165
-0
lines changed

.github/workflows/main.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
name: CD
2+
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
7+
branches: [master]
8+
9+
workflow_dispatch:
10+
11+
jobs:
12+
build:
13+
runs-on: windows-latest
14+
15+
steps:
16+
- uses: actions/checkout@v2
17+
- name: Setup .NET Core
18+
uses: actions/setup-dotnet@v1
19+
with:
20+
dotnet-version: '3.1.x'
21+
- name: Install dependencies
22+
run: dotnet restore
23+
- name: Build
24+
run: |
25+
dotnet publish -c Release
26+
copy LICENSE WriteAPI\bin\Release\netcoreapp3.1\publish\
27+
- name: Upload Write API
28+
uses: actions/upload-artifact@v2
29+
with:
30+
name: Write API
31+
path: WriteAPI/bin/Release/netcoreapp3.1/publish/
32+
- name: Upload Sample Project
33+
uses: actions/upload-artifact@v2
34+
with:
35+
name: Sample Project
36+
path: SampleProject/bin/Release/netcoreapp3.1/publish/

0 commit comments

Comments
 (0)