File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change 77
88jobs :
99 build :
10+ if : startsWith(github.ref, 'refs/tags/v') && github.ref == 'refs/heads/main'
1011 runs-on : ubuntu-latest
1112
1213 steps :
2526 run : dotnet test --configuration Release --no-build
2627
2728 - name : 📦 Pack NuGet package
28- run : dotnet pack --configuration Release --no-build --output ./nupkg
29+ run : dotnet pack ./src/AStar.Dev.Functional.Extensions/AStar.Dev.Functional.Extensions.csproj --configuration Release --no-build --output ./nupkg
2930
3031 - name : 🚀 Publish to NuGet.org
31- run : dotnet nuget push ./nupkg /*.nupkg --skip-duplicate --source https://int.nugettest.org/v3.index.json # https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
32+ run : dotnet nuget push ./** /*.nupkg --skip-duplicate --source https://int.nugettest.org/v3.index.json # https://api.nuget.org/v3/index.json --api-key ${{ secrets.NUGET_API_KEY }}
3233
You can’t perform that action at this time.
0 commit comments