Skip to content

Commit fbe2168

Browse files
committed
Fix it
1 parent 1b2b9f5 commit fbe2168

2 files changed

Lines changed: 16 additions & 15 deletions

File tree

.github/workflows/dotnet.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: .NET
1+
name: Code Validation
22

33
on:
44
push:
@@ -12,14 +12,14 @@ jobs:
1212
runs-on: ubuntu-latest
1313

1414
steps:
15-
- uses: actions/checkout@v2
16-
- name: Setup .NET
17-
uses: actions/setup-dotnet@v1
18-
with:
19-
dotnet-version: 5.0.x
20-
- name: Restore dependencies
21-
run: dotnet restore
22-
- name: Build
23-
run: dotnet build --no-restore
24-
- name: Test
25-
run: dotnet test --no-build --verbosity normal
15+
- uses: actions/checkout@v2
16+
- name: Setup .NET
17+
uses: actions/setup-dotnet@v1
18+
with:
19+
dotnet-version: 5.0.x
20+
- name: Restore dependencies
21+
run: dotnet restore
22+
- name: Build
23+
run: dotnet build --no-restore
24+
- name: Test
25+
run: dotnet test --no-build --verbosity normal

.github/workflows/publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
name: Publish NuGet Packages
12
on:
23
workflow_dispatch:
34
inputs:
@@ -19,7 +20,7 @@ jobs:
1920
dotnet-version: 5.0.x
2021

2122
- name: Publish Net50
22-
id: publish_nuget
23+
id: publish_nuget_net50
2324
uses: rohith/publish-nuget@v2
2425
with:
2526
# Filepath of the project to be packaged, relative to root of repository
@@ -29,7 +30,7 @@ jobs:
2930
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
3031

3132
- name: Publish NetCoreApp31
32-
id: publish_nuget
33+
id: publish_nuget_netcoreapp31
3334
uses: rohith/publish-nuget@v2
3435
with:
3536
# Filepath of the project to be packaged, relative to root of repository
@@ -39,7 +40,7 @@ jobs:
3940
NUGET_KEY: ${{secrets.NUGET_API_KEY}}
4041

4142
- name: Publish NetStandard20
42-
id: publish_nuget
43+
id: publish_nuget_netstandard20
4344
uses: rohith/publish-nuget@v2
4445
with:
4546
# Filepath of the project to be packaged, relative to root of repository

0 commit comments

Comments
 (0)