We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
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
When trying to push to a Dokku remote, I get errors.
For the following examples website is my application name and domain.com is the domain that points to my server.
website
domain.com
On a local machine, this is as simple as running:
ssh-add dokku_key
git remote add dokku [email protected]:website
git push dokku
With the following drone config
- name: push commit image: appleboy/drone-git-push settings: ssh_key: from_secret: dokku_ssh_key remote: [email protected]:website remote_name: dokku
I get the error:
level=fatal msg="parse \"[email protected]:website\": first path segment in URL cannot contain colon"
I imagine this is because of the lack of a protocol, in this case ssh. After adding it and trying again, no luck...
- name: push commit image: appleboy/drone-git-push settings: ssh_key: from_secret: dokku_ssh_key remote: ssh://[email protected]:website remote_name: dokku
level=fatal msg="parse \"ssh://[email protected]:website\": invalid port \":website\" after host"
The text was updated successfully, but these errors were encountered:
I have exactly the same issue, the following workaround fixed it for me. Although, I would wish this gets fixed in a new release.
Work-around is: image: appleboy/drone-git-push:0.2.0-linux-amd64 Originally posted by @decentral1se in #40 (comment)
image: appleboy/drone-git-push:0.2.0-linux-amd64
Sorry, something went wrong.
No branches or pull requests
When trying to push to a Dokku remote, I get errors.
For the following examples
website
is my application name anddomain.com
is the domain that points to my server.Running locally
On a local machine, this is as simple as running:
ssh-add dokku_key
git remote add dokku [email protected]:website
git push dokku
First attempt
With the following drone config
I get the error:
I imagine this is because of the lack of a protocol, in this case ssh. After adding it and trying again, no luck...
Second attempt
I get the error:
The text was updated successfully, but these errors were encountered: