Consume packages from Azure DevOps Artifacts in GitHub Actions on Ubuntu
11 Feb 2022I need to consume some private packages published to Azure DevOps Artifacts, in a build on GitHub Actions running Ubuntu. While researching most answers either suggested to install the credentials provider or use nuget sources add
with a Personal Access Token (PAT). The first seemed like overkill for my situation so I opted for the latter. I already have this source configured in the NuGet.config
file in the root of my solution, so instead of add
I’ll use update
. It didn’t work: