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

a server that allows you to automatically deploy the latest version of your github project at each git push

Results 18 Github-Auto-Deploy issues
Sort by recently updated
recently updated
newest added

BaseHTTPServer, urlibparse and others not working in Pythoon3

I really wan to use this script, is works well but I am wary about using it in deployment since it look like this project has been abandoned. See all...

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...

``` python if(GitAutoDeploy.daemon): pid = os.fork() if(pid != 0): + with open('/var/run/GitAutoDeploy.pid', 'w') as f: + f.write(str(pid)) + f.close() sys.exit() os.setsid() ```

文件名、目录名或卷标语法不正确。 when i replace `call` to `os.system()` erro is fixed

Also allows user to specify the config path

Refactored all intermediate messages to go through a single method Changed git command to use -C rather than using shell=True and &&

- added bitbucket support for the _repo:push_ webhook used the User-Agent header to detect if the webhook was sent from BitBucket - added an example to the conf file to...

I think it would be smart to generate the HMAC of the request body using the secret key that's set when configuring the webhook and compare it with the X-Hub-Signature...

I wanted to make sure that the working copy on my deployment system is always an exact copy of the newest revision at github/origin. 'git fetch' is insufficient for that...