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
7 changes: 5 additions & 2 deletions .github/actions/nuget-uno-publish/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ runs:

- name: Uno NuGet Feed Push
shell: pwsh
env:
FEED_ENDPOINT: https://pkgs.dev.azure.com/uno-platform/1dd81cbd-cb35-41de-a570-b0df3571a196/_packaging/unoplatformdev/nuget/v3/index.json
VSS_NUGET_EXTERNAL_FEED_ENDPOINTS: >-
{"endpointCredentials":[{"endpoint":"https://pkgs.dev.azure.com/uno-platform/1dd81cbd-cb35-41de-a570-b0df3571a196/_packaging/unoplatformdev/nuget/v3/index.json","username":"az","password":"${{ inputs.token }}"}]}
run: |
dotnet nuget add source https://pkgs.dev.azure.com/uno-platform/1dd81cbd-cb35-41de-a570-b0df3571a196/_packaging/unoplatformdev/nuget/v3/index.json -n "dev" --username az --password "${{ inputs.token }}" --store-password-in-clear-text
dotnet nuget push --api-key AZ -s dev artifacts/*.nupkg
dotnet nuget push artifacts/*.nupkg --source $env:FEED_ENDPOINT --api-key az --skip-duplicate
Copy link

Copilot AI Dec 2, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The API key 'az' appears to be a placeholder or incorrect value. Azure DevOps feeds typically require the actual token value as the API key. Consider using ${{ inputs.token }} as the API key value instead of 'az'.

Suggested change
dotnet nuget push artifacts/*.nupkg --source $env:FEED_ENDPOINT --api-key az --skip-duplicate
dotnet nuget push artifacts/*.nupkg --source $env:FEED_ENDPOINT --api-key "${{ inputs.token }}" --skip-duplicate

Copilot uses AI. Check for mistakes.
Loading