-
Notifications
You must be signed in to change notification settings - Fork 117
38 lines (33 loc) · 969 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
name: .NET Core build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
release:
types: [published]
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4.1.1
- name: Setup .NET Core
uses: actions/setup-dotnet@v3.2.0
with:
dotnet-version: 3.1.101
- name: Install dependencies
working-directory: ./PreMailer.Net
run: dotnet restore
- name: Build
working-directory: ./PreMailer.Net
run: dotnet build --configuration Release --no-restore
- name: Test
working-directory: ./PreMailer.Net
run: dotnet test --no-restore --verbosity normal --collect "Code coverage"
# Publish
- name: publish on version change
if: ${{ github.event_name == 'release' }}
uses: rohith/publish-nuget@v2.5.5
with:
PROJECT_FILE_PATH: PreMailer.Net/PreMailer.Net/PreMailer.Net.csproj
NUGET_KEY: ${{secrets.NUGET_APIKEY}}