File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030 run : |
3131 shopt -s globstar
3232 for file in **/*.nupkg
33+ do
34+ dotnet nuget push "$file" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
35+ done
36+
37+ - name : publish snupkg packages
38+ run : |
39+ shopt -s globstar
40+ for file in **/*.snupkg
3341 do
3442 dotnet nuget push "$file" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
3543 done
Original file line number Diff line number Diff line change 1313 <PackageLicenseExpression >MIT</PackageLicenseExpression >
1414 <PackageReadmeFile >README.md</PackageReadmeFile >
1515 <Product >Managed Code - Storage</Product >
16- <Version >2.0.16 </Version >
17- <PackageVersion >2.0.16 </PackageVersion >
16+ <Version >2.0.17 </Version >
17+ <PackageVersion >2.0.17 </PackageVersion >
1818 </PropertyGroup >
1919 <PropertyGroup Condition =" '$(GITHUB_ACTIONS)' == 'true'" >
2020 <ContinuousIntegrationBuild >true</ContinuousIntegrationBuild >
You can’t perform that action at this time.
0 commit comments