File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 35
35
run : .\.ci\windows\gha-setup.ps1
36
36
- name : List NuGet sources
37
37
run : dotnet nuget locals all --list
38
- - name : Build
38
+ - name : Build (Debug)
39
39
run : dotnet build ${{ github.workspace }}\Build.csproj
40
40
- name : Verify
41
41
run : dotnet format ${{ github.workspace }}\RabbitMQDotNetClient.sln --verify-no-changes --verbosity=diagnostic
73
73
run : ${{ github.workspace }}/.ci/ubuntu/gha-setup.sh
74
74
- name : List NuGet sources
75
75
run : dotnet nuget locals all --list
76
- - name : Build
76
+ - name : Build (Debug)
77
77
run : dotnet build ${{ github.workspace }}/Build.csproj
78
78
- name : Verify
79
79
run : dotnet format ${{ github.workspace }}/RabbitMQDotNetClient.sln --verify-no-changes --verbosity=diagnostic
Original file line number Diff line number Diff line change 11
11
runs-on : windows-latest
12
12
steps :
13
13
- uses : actions/checkout@v4
14
+ with :
15
+ submodules : true
14
16
- uses : actions/cache@v3
15
17
with :
16
18
path : |
20
22
restore-keys : |
21
23
${{ runner.os }}-v1-nuget-
22
24
- name : Build (Release)
23
- run : dotnet build ${{ github.workspace }}\projects\RabbitMQ.Client\RabbitMQ.Client.csproj --verbosity=normal -- configuration=Release --property CI=true
25
+ run : dotnet build ${{ github.workspace }}\projects\RabbitMQ.Client\RabbitMQ.Client.csproj --configuration=Release --property CI=true
24
26
- name : Publish to NuGet
25
27
run : dotnet nuget push --skip-duplicate --api-key ${{ secrets.NUGET_API_KEY }} --source 'https://api.nuget.org/v3/index.json' ${{ github.workspace }}\packages\RabbitMQ.Client.7.*.nupkg
You can’t perform that action at this time.
0 commit comments