This message was deleted.
# general
s
This message was deleted.
m
I believe my issue is related to MacOS and the SSH_AUTH_SOCK. The workaround would maybe be to have a key without a passphrase that I pass with the
--ssh
flag
Wrong all around. Using a Personal Access Token in combination with a custom
~/.npmrc
I was able to resolve:
Copy code
always-auth=true
registry=<https://registry.npmjs.org/>
@my-org:registry=<https://npm.pkg.github.com>
//npm.pkg.github.com/:_authToken=${NODE_AUTH_TOKEN}
Copy code
args: { NODE_AUTH_TOKEN: config.getSecret("nodeAuthToken");
Here’s the satanic line that is supposed to keep CD working:
Copy code
const nodeAuthToken: pulumi.Output<string> = process.env.NODE_AUTH_TOKEN || pulumi.output(config.getSecret("nodeAuthToken")!.apply(v => v));