-
-
Notifications
You must be signed in to change notification settings - Fork 36
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
Bug: Remote URL's Formatting Error #40
Comments
I will take it. |
Awesome! Thanks again! Any idea of an eta till a fix is released? |
Yeah, running into this... using "[email protected]:repo.git" |
Work-around is: |
The workaround suggested by decentral1se works for me, but are there any plans to fix this in a "latest" version/tag? |
Pretty sure this is unrelated to the linked golang bug. That bug is specifically about leading space in front of URLs passed to
So a workaround would be to specify It looks like people will only run into this issue if Drone uses authentication for the clone step, e.g., you're running on a private repo or you set |
Thanks for @satwell solution replace [email protected]:fh-trier/latex-templates.git with ssh://[email protected]/fh-trier/latex-templates.git |
Description
I had several builds fail this morning as they tried to push GitHub code to a repo via a drone pipeline. The error occurred in the final step of my pipeline:
The error was as follows:
This is likely occurring because a regression of a previous issue with
net/url
in 1.14. See this issue: golang/go#29261Changing the image from
appleboy/drone-git-push
toappleboy/drone-git-push:0.2.0-linux-alpine
to migrate to the last working version resolved the issue.The text was updated successfully, but these errors were encountered: