-
Notifications
You must be signed in to change notification settings - Fork 37
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix release CI #252
Labels
type: bug
Something isn't working
Comments
Doing some testing, it seems CircleCI is replacing any instance of and In CircleCI when I run git remote add origin-https "https://github.com/$GIT_REPOSITORY_OWNER/$GIT_REPOSITORY_NAME.git"
git remote get-url --push origin-https
git remote -v the output is
|
Issue was that circleci's global git config for the job had |
TylerHelmuth
added a commit
that referenced
this issue
Jun 9, 2023
## Which problem is this PR solving? - Closes #252 ## Short description of the changes - updates the release script to unset an `insteadOf` config in the global git config of the circleci job. ## How to verify that this has the expected result Tested that the git remote is set properly. Can't test the actual `cr index` command until the next release.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
With the bump to chart releaser
1.5.0
we lost the ability to docr index
with an ssh git remote, which is the type of remote that circleci uses. As a result, the circleci job could not run thecr index
step of the release. An attempt to fix this issue was made with #250, but it was unsuccessful. As a result, we have had to do thecr index
step locally, which is annoying.We need to update our release script or the CircleCI job so that it plays nicely with chart releaser.
The text was updated successfully, but these errors were encountered: