Skip to content

Commit

Permalink
Use string for NuGet API key (#304 closes #303)
Browse files Browse the repository at this point in the history
  • Loading branch information
luigiberrettini committed May 29, 2022
1 parent a7ebf69 commit 6b24a99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,6 @@ jobs:
run: |
$InformationPreference = 'Continue'
$mostRecentVersion = "${{ needs.determine-most-recent-version.outputs.mrv }}"
$nuGetApiKey = ${{ secrets.NUGET_API_KEY }}
$nuGetApiKey = "${{ secrets.NUGET_API_KEY }}"
${{ github.workspace }}\build\scripts\bootstrap.ps1 '--target=NuGetPush' "--softwareVersion=${mostRecentVersion}+commitHash" '--nuGetSource=https://api.nuget.org/v3/index.json' "--nuGetApiKey=${nuGetApiKey}"
if ($LastExitCode -ne 0) { exit $LastExitCode }

0 comments on commit 6b24a99

Please sign in to comment.