Probably relates to #233
The git config in the resource has changed to something like:
resource_git# cat .git/config
[core]
repositoryformatversion = 0
filemode = true
bare = false
logallrefupdates = true
[user]
name = concourse-ci
email = concourse@local
[url "https://x-oauth-basic@github.com/"]
insteadOf = git@github.com:
[url "https://"]
insteadOf = git://
[remote "origin"]
url = https://x-oauth-basic:<token>@github.com/<org>/<repo>
fetch = +refs/heads/*:refs/remotes/origin/*
This prevents us then running a yarn install to install our private dependencies using a private key.
Probably relates to #233
The git config in the resource has changed to something like:
This prevents us then running a
yarn installto install our private dependencies using a private key.