We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent aa1b834 commit cc3fb89Copy full SHA for cc3fb89
1 file changed
.github/workflows/ci-cd.yml
@@ -133,14 +133,7 @@ jobs:
133
$version = "${{ github.ref_name }}" -replace '^v', ''
134
dotnet pack src/CDT.Core/CDT.Core.csproj --no-build -c Release -o "${{ github.workspace }}\artifacts" /p:Version=$version
135
136
- - name: NuGet login
137
- uses: NuGet/login@v1
138
- id: login
139
- with:
140
- user: MichaCo
141
-
142
143
- name: Push to NuGet.org
144
run: |
145
- dotnet nuget push "${{ github.workspace }}\artifacts\*.nupkg" --api-key ${{ steps.login.outputs.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
+ dotnet nuget push "${{ github.workspace }}\artifacts\*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json --skip-duplicate
146
shell: pwsh
0 commit comments