-
Notifications
You must be signed in to change notification settings - Fork 2
39 lines (35 loc) · 1009 Bytes
/
dotnetcore.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: .NET Core
on:
workflow_dispatch:
push:
branches: [ develop ]
tags:
- '*'
pull_request:
branches: [ develop ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Setup .NET Core
uses: actions/setup-dotnet@v1
with:
dotnet-version: 3.1.101
- name: Update version
run: cd BuildTools && chmod +x *.sh && ./UpdateVersion.sh
- name: Install dependencies
run: dotnet restore
- name: Build
run: dotnet build --configuration Release --no-restore --verbosity normal
- name: Test
run: dotnet test --configuration Release --no-restore --no-build --verbosity normal
- name: Package
run: cd CsharpExtras && dotnet pack CsharpExtras.csproj --configuration Release --no-restore --no-build
- name: Upload package
uses: actions/upload-artifact@v2
with:
name: NuGet Package
path: CsharpExtras/bin/Release/*.nupkg