File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -82,16 +82,16 @@ jobs:
8282 # Clean up extraction directory
8383 Remove-Item -Path $extractPath -Recurse -Force
8484 }
85- # - name: Publish NuGet packages
86- # shell: pwsh
87- # run: |
88- # Get-ChildItem -Path "${{ github.workspace }}/artifacts" -Filter *.nupkg | ForEach-Object {
89- # dotnet nuget push $_.FullName --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json --skip-duplicate
90- # }
91- #
92- # - name: Publish symbols packages
93- # shell: pwsh
94- # run: |
95- # Get-ChildItem -Path "${{ github.workspace }}/artifacts" -Filter *.snupkg | ForEach-Object {
96- # dotnet nuget push $_.FullName --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json --skip-duplicate
97- # }
85+ - name : Publish NuGet packages
86+ shell : pwsh
87+ run : |
88+ Get-ChildItem -Path "${{ github.workspace }}/artifacts" -Filter *.nupkg | ForEach-Object {
89+ dotnet nuget push $_.FullName --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json --skip-duplicate
90+ }
91+
92+ - name : Publish symbols packages
93+ shell : pwsh
94+ run : |
95+ Get-ChildItem -Path "${{ github.workspace }}/artifacts" -Filter *.snupkg | ForEach-Object {
96+ dotnet nuget push $_.FullName --api-key ${{ secrets.NUGET_TOKEN }} --source https://api.nuget.org/v3/index.json --skip-duplicate
97+ }
Original file line number Diff line number Diff line change 1212 <VersionBase >1.0</VersionBase >
1313 <BuildNumber >$([System.DateTime]::Now.ToString("yyMM"))</BuildNumber >
1414 <Revision >$([System.DateTime]::Now.ToString("ddHH"))</Revision >
15- <Version >$(VersionBase).$(BuildNumber).$(Revision)-preview </Version >
15+ <Version >$(VersionBase).$(BuildNumber).$(Revision)</Version >
1616 <!-- Basic Project Properties -->
1717 <PackageId >$(RootNamespace)</PackageId >
1818 <PackageVersion >$(Version)</PackageVersion >
You can’t perform that action at this time.
0 commit comments