File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4545 run : dotnet pack ./Infragistics.QueryBuilder.Executor.csproj --no-build --no-restore --configuration ${BUILD_CONFIGURATION} -p:PackageVersion=${VERSION} -o "${{ github.workspace }}/nupkg"
4646
4747 - name : Sign NuGet package (using dotnet nuget sign)
48- shell : pwsh
4948 env :
5049 SIGNING_CERTIFICATE_PASSWORD : ${{ secrets.SIGNING_CERTIFICATE_PASSWORD }}
5150 SIGNING_CERTIFICATE_TIMESTAMP_URL : ${{ vars.SIGNING_CERTIFICATE_TIMESTAMP_URL }}
5857 user : ${{ secrets.INFRAGISTICS_NUGET_ORG_USER }}
5958
6059 - name : Publish to NuGet.org
61- shell : pwsh
6260 run : dotnet nuget push ${{ github.workspace }}/nupkg/Infragistics.QueryBuilder.Executor.${VERSION}.nupkg --api-key ${{ steps.nuget-login.outputs.NUGET_API_KEY }} --source "https://api.nuget.org/v3/index.json"
63-
64- - name : Clean up certificate
65- if : always()
66- shell : pwsh
67- run : |
68- $certPath = "${{ runner.temp }}\certificate.pfx"
69- if (Test-Path $certPath) {
70- Remove-Item $certPath -Force
71- Write-Host "Certificate cleaned up"
72- }
You can’t perform that action at this time.
0 commit comments