-
I have the following workflow:
In my repo, in addition to numerous third-party dependencies, I have three private packages that are hosted in my organization’s GitHub Package Registry and are scoped with The When the “Install dependencies” step runs, it errors with the following message:
I’ve confirmed GPR has the version of the dependency that I’m trying to install. I also removed that dependency from my What’s interesting is that I temporarily created a Personal Access Token (PAT) and when I attempted to use that as the So it seems like there is a problem using the |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
We were able to figure out the issue and I’m going to share it here because it’s a really sneaky one. :slight_smile: This topic clued us in to the answer: Token with "repo" scope to install private packages? - #2 by jcansdale. Specifically this part (emphasis mine):
So in my case, my organization creates secrets under a “system user” account and I had not given this user permission to my one repo. |
Beta Was this translation helpful? Give feedback.
We were able to figure out the issue and I’m going to share it here because it’s a really sneaky one. :slight_smile:
This topic clued us in to the answer: Token with "repo" scope to install private packages? - #2 by jcansdale. Specifically this part (emphasis mine):
So in my case, my organization creates secrets under a “system user” account and I had not given this user permission to my one repo.