Twine Upload To Artifacts Feed Failing
I have a python package build successfully and trying Publish Python packages to Azure Artifacts feeds. My package directory structure is following: my_pkg my_pkg start.py
Solution 1:
Build Scope permission issue was propagating from the fact that the project build was being feed from Azure pipeline(Build Artifacts
) and it requires different level of permission for the Azure Feed - Azure Pipelines
To use packages from a feed in Azure Pipelines, the appropriate build identity must have permission to your feed. By default, the Project Collection Build Service is a Contributor. If you've changed your builds to run at project scope, you'll need to add the project-level build identity as a Reader or Contributor, as desired.
Post a Comment for "Twine Upload To Artifacts Feed Failing"