File tree 2 files changed +4
-34
lines changed
2 files changed +4
-34
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 42
42
run : dotnet test ./src --no-build --verbosity normal --filter "Category!=Integration"
43
43
44
44
publish :
45
- name : Publish to GitHub Packages
45
+ name : Publish to Packages
46
46
needs : build
47
47
48
48
permissions :
@@ -63,16 +63,16 @@ jobs:
63
63
dotnet-version : 8.0.x
64
64
65
65
- name : Build
66
- run : dotnet build ./src/MyPackage --configuration Release --output .
66
+ run : dotnet build ./src/FluentHttpClient --configuration Release --output .
67
67
68
68
- name : Publish to GitHub Packages
69
- if : ${{ github.event.inputs.nugetPush == false }}
69
+ if : ${{ github.event.inputs.nugetPush != 'true' }}
70
70
run : |
71
71
dotnet nuget push *.nupkg --source https://nuget.pkg.github.com/scottoffen/index.json --api-key ${{ secrets.GITHUB_TOKEN }}
72
72
dotnet nuget push *.snupkg --source https://nuget.pkg.github.com/scottoffen/index.json --api-key ${{ secrets.GITHUB_TOKEN }}
73
73
74
74
- name : Publish to Nuget
75
- if : ${{ github.event.inputs.nugetPush == true }}
75
+ if : ${{ github.event.inputs.nugetPush == ' true' }}
76
76
run : |
77
77
dotnet nuget push *.nupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
78
78
dotnet nuget push *.snupkg --source https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
You can’t perform that action at this time.
0 commit comments