File tree Expand file tree Collapse file tree 1 file changed +6
-8
lines changed
Expand file tree Collapse file tree 1 file changed +6
-8
lines changed Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010
1111 steps :
12- - uses : actions/checkout@v4.1.1
12+ - uses : actions/checkout@v4.1.4
1313 - name : Setup .NET Core
1414 uses : actions/setup-dotnet@v4
1515 with :
@@ -22,12 +22,10 @@ jobs:
2222 - name : Build
2323 run : dotnet build --configuration Release --no-restore
2424 - name : Upload a Build Artifact
25- uses : actions/upload-artifact@v4.3.1
25+ uses : actions/upload-artifact@v4.3.3
2626 with :
2727 path : ArtNetSharp/bin/Release/**/ArtNetSharp.dll
28- - name : Publish ArtNetSharp
29- uses : brandedoutcast/publish-nuget@v2.5.5
30- with :
31- PROJECT_FILE_PATH : ArtNetSharp/ArtNetSharp.csproj
32- NUGET_KEY : ${{secrets.NUGET_KEY}}
33- PACKAGE_NAME : ArtNetSharp
28+ - name : Create Nuget Package
29+ run : dotnet pack --configuration Release
30+ - name : Upload to Nuget.org
31+ run : dotnet nuget push ArtNetSharp/bin/Release/ArtNetSharp.*.nupkg --api-key ${{secrets.NUGET_KEY}} -s https://api.nuget.org/v3/index.json
You can’t perform that action at this time.
0 commit comments