Github-Auto-Deploy icon indicating copy to clipboard operation
Github-Auto-Deploy copied to clipboard

Stuck on deploying

Open furkansahin opened this issue 8 years ago • 5 comments

Hey! I appreciate your work, it's an awesome and useful one. However, when I try to use it in my server - repo connection, I don't know the reason but it is stuck on deploying as you can see from the screenshot. Github says the delivery is successful, but I couldn't resolve the problem. screen shot 2016-04-16 at 13 55 30

furkansahin avatar Apr 16 '16 10:04 furkansahin

I also had the same problem, as it turns out, you may want to git pull instead of git fetch. Just replace it in line 83 of GitAutoDeploy.py.

Actually i have no idea why there is just a git fetch in the script.

and-jan avatar Jun 14 '16 01:06 and-jan

had the same problem, check out my pull request https://github.com/logsol/Github-Auto-Deploy/pull/29 solving it. It's a shame it was not merged yet Enjoy ;)

ThomDietrich avatar Jun 19 '16 15:06 ThomDietrich

hi @ThomDietrich i use your pull request about this problem but i still have the same issue stuck here

dev@scarlet:~/Github-Auto-Deploy$ python GitAutoDeploy.py
Github Autodeploy Service v0.2 started
192.30.252.42 - - [18/Mar/2017 16:15:22] "POST / HTTP/1.1" 204 -

fiantinangon avatar Mar 18 '17 14:03 fiantinangon

@fiantinangon I haven't used the script for a while. You should add some debugging to the script to find the point of error. It's probably easy to find...

ThomDietrich avatar Mar 18 '17 23:03 ThomDietrich

@ThomDietrich i finally fix the issue, the issue is on

if(repository['url'] == repoUrl):
                res.append(repository['path'])

my conf repository url using .git on the url :) and the repoUrl from git response not use .git on the last URL , finally i simply change my config and change the url to follow new url from git response.

fiantinangon avatar Mar 19 '17 10:03 fiantinangon