RJ Hollberg
RJ Hollberg
@Insire @devlead I'm trying to pull a Cake Recipe package from a private feed in GitHub Packages. I have a `nuget.config` file with credentials specified, but the credentials are pulled...
I just hard-coded some temporary credentials in my `nuget.config` file, and it seems to work. So it looks like variable substitution is not a feature supported by Cake In-Process NuGet...
Actually, it appears I was mistaken. This looks to be an issue with [GitHub itself](https://github.community/t/github-token-cannot-access-private-packages/16621). The reason it worked for me above is because I used a _personal_ access token...
Yes, we're installing 3 versions of temurin (8, 11, and 17) because this is a build agent for many applications -- some legacy. I took the code for installing them...
@gdams Yes we're creating the keyrings dir in a previous script, with this line: ```bash # Make sure the keyrings directory exists with the correct permissions install -m 0755 -d...
Sure. I've stripped out all the other applications for simplicity -- and I've verified the errors still happen (on my machine). This file contains the dockerfile plus a folder named...
I just built the dockerfile on GitHub's public build runners (`ubuntu-latest`), and it worked fine there as well. So it must be something with my local environment. Can you help...
If it's inside a dockerfile though, I image my machine config shouldn't matter so much -- what's in the dockerfile is what's important, because that's the environment the scripts run...
Perhaps in my case Docker is making URI calls _through_ Windows -- which would mean Windows needs to have the proper root certs to connect to Temurin Artifactory. Are there...