Hi,
I am trying to setup a Pipeline that will push any commited changes through FTP to my website.
I have done this before and it has worked without an issue however after trying to do this for another private repository with the same host it is not working.
The strange thing is that it's not even spitting out an error - instead the Pipeline just keeps working indefinately (4m+) and I eventually shut it off to save my minutes.
Here is the code that is not working (from the following tutorial: https://www.youtube.com/watch?v=8HZhHtZebdw&t=80s)
---
# This is a sample build configuration for PHP. # Check our guides at https://confluence.atlassian.com/x/e8YWN for more examples. # Only use spaces to indent your .yml configuration. # ----- # You can specify a custom docker image from Docker Hub as your build environment. image: samueldebruyn/debian-git pipelines: default: - step: script: - apt-get update - apt-get -qq install git-ftp - git-ftp init --user $FTP_USERNAME --passwd $FTP_PASSWORD headstudios.com.au
Below is the screenshot of the Pipeline that I stopped after it was running for over 4 minutes:
Now the weird thing is that it doesn’t give an error or anything. I’ve even tried to do the git-ftp init with a wrong password and it didn’t spit out an error after. It just stops and keeps going.
However here is where it gets interesting - when I change ‘headstudios.com.au’ to ‘wetcheck.com.au’ in the .yml file it DOES spit out an error as so:
Which is very confusing to me - because it says that it can’t access the remote 'ftp://webapp%40headstudios.com.au:***@wetcheck.com.au' - but where is ‘ftp://webapp%40headstudios.com.au:***' coming from?
Any feedback would be much appreciated.
I should note I can't connect to the FTP for my site either - it keeps timing out in Filezilla too - which is good because I can just contact GoDaddy and discuss. Hopefully it's just a server related timeout issue.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.