-
Notifications
You must be signed in to change notification settings - Fork 1
35 lines (33 loc) · 1.5 KB
/
nuget-push-public.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
name: NuGet Push Public
on: [workflow_dispatch]
jobs:
build-test-prep-push:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-dotnet@v3
with:
dotnet-version: |
6.0.x
7.0.x
8.0.x
env:
DOTNET_INSTALL_DIR: /usr/share/dotnet
- name: Restore dependencies
run: |
dotnet restore ./src/CSharp/Blazor/EasyMicroservices.UI.TemplateGenerator.Blazor.sln
dotnet restore ./src/CSharp/Cores/EasyMicroservices.UI.TemplateGenerator.Core.sln
- name: Build
run: |
dotnet build ./src/CSharp/Blazor/EasyMicroservices.UI.TemplateGenerator.Blazor.sln --no-restore
dotnet build ./src/CSharp/Cores/EasyMicroservices.UI.TemplateGenerator.Core.sln --no-restore
- name: Test
run: |
dotnet test ./src/CSharp/Blazor/EasyMicroservices.UI.TemplateGenerator.Blazor.sln --no-build --verbosity normal
dotnet test ./src/CSharp/Cores/EasyMicroservices.UI.TemplateGenerator.Core.sln --no-build --verbosity normal
- name: Create the package
run: |
dotnet pack ./src/CSharp/Blazor/EasyMicroservices.UI.TemplateGenerator.Blazor.sln --output nupkgs
dotnet pack ./src/CSharp/Cores/EasyMicroservices.UI.TemplateGenerator.Core.sln --output nupkgs
- name: Publish the package to NuGet.org
run: dotnet nuget push nupkgs\*.nupkg -k ${{secrets.NUGET_KEY}} -s https://api.nuget.org/v3/index.json --skip-duplicate