Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,10 +68,10 @@ jobs:
- name: Verify NuGet API key
if: steps.version.outputs.release == 'true'
env:
NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }}
NUGET_APIKEY: ${{ secrets.NUGET__APIKEY }}
run: |
if [ -z "$NUGET_APIKEY" ]; then
echo "The NUGET_APIKEY secret is not set. It is required to publish Purview.Build to nuget.org." >&2
echo "The NUGET__APIKEY secret is not set. It is required to publish Purview.Build to nuget.org." >&2
exit 1
fi

Expand All @@ -87,7 +87,7 @@ jobs:
if: steps.version.outputs.release == 'true'
env:
GITHUB_TOKEN: ${{ github.token }}
NUGET_APIKEY: ${{ secrets.NUGET_APIKEY }}
NUGET_APIKEY: ${{ secrets.NUGET__APIKEY }}
Release__Mode: NuGet
Release__UploadArtifacts: "true"
NuGet__FeedUrl: https://api.nuget.org/v3/index.json
Expand Down