Command timed out after no response trying to deploy hugo blog to github page with wercker -


i trying setup automatic deployment of hugo blog github pages using wercker. build phase ok, can build public directory blog static files. have command timed out after no response error while trying deploy hugo blog github page.

this wercker.yml file

box: python:wheezy no-response-timeout: 15 build: steps: - arjen/hugo-build: theme: hd-theme flags: --disablesitemap=true deploy: steps: - lukevivier/gh-pages@0.2.1: token: $git_token repo: hervedarritchon/hervedarritchon.github.io basedir: public

### log error during deployment  running wercker version: 1.0.152 (compiled at: 2015-06-02t19:21:14z, git commit: 12391582ed7323e803e15b277b9da3a65f7dde7c) using config: box: python:wheezy no-response-timeout: 15 build:   steps:     - arjen/hugo-build:         theme: hd-theme         flags: --disablesitemap=true deploy:   steps:     - lukevivier/gh-pages@0.2.1:         token: $git_token         repo: hervedarritchon/hervedarritchon.github.io         basedir: public  pulling repository python pulling image (wheezy) python: 169d81d45993 pulling image (wheezy) python, endpoint: https://registry-1.docker.io/v1/: 169d81d45993 pulling dependent layers: 169d81d45993 download complete: 7a3e804ed6c0 download complete: b96d1548a24e download complete: 0f57835aec39 download complete: 7d22d0f990bc download complete: be6ffc9d87fc download complete: 6cb13f325b61 download complete: b394be4f3c52 download complete: ddc8488da9fa download complete: 13700980fafa download complete: 7f729a93d07e download complete: 089f6d0ff231 download complete: 7c67244ee4eb download complete: 169d81d45993 download complete: 169d81d45993 status: image date python:wheezy export wercker="true" export wercker_root="/pipeline/source" export wercker_source_dir="/pipeline/source" export wercker_cache_dir="/cache" export wercker_output_dir="/pipeline/output" export wercker_pipeline_dir="/pipeline" export wercker_report_dir="/pipeline/report" export wercker_application_id="556eaec700bccd884305010b" export wercker_application_name="software-the-good-parts" export wercker_application_owner_name="hervedarritchon" export wercker_application_url="https://app.wercker.com/#application/556eaec700bccd884305010b" export term="xterm-256color" export deploy="true" export wercker_deploy_id="556eced1453eb1bb0500347f" export wercker_deploy_url="https://app.wercker.com/#deploy/556eced1453eb1bb0500347f" export wercker_git_domain="github.com" export wercker_git_owner="hervedarritchon" export wercker_git_repository="software-the-good-parts" export wercker_git_branch="master" export wercker_git_commit="9c247dfd78daa8897f4ef73cf050f6a72a35ffbb" export wercker_deploytarget_name="software-the-good-part" export wercker_started_by="hervedarritchon" export wercker_main_pipeline_started="1433325265" 

i have timeout message, tried raised time out duration in case 15mn run time out.

any appreciate,

hervé

i have fixed problem. comes wercker.yml file , content of deply step.

deploy: steps: - lukevivier/gh-pages@0.2.1: token: $git_token repo: hervedarritchon/hervedarritchon.github.io basedir: public

in fact, domain tag not optional, have set github.com have deploy step run.

i think should change documentation more straight forward newbie ;)

thanks anyway step.

so new wercker.yml file :

box: python:wheezy build: steps: - arjen/hugo-build: theme: hd-theme flags: --disablesitemap=true deploy: steps: - lukevivier/gh-pages@0.2.1: token: $git_token domain: github.com repo: hervedarritchon/hervedarritchon.github.io basedir: public

any way, wercker.yml file can build , deploy automatically hugo site github pages.


Comments

Popular posts from this blog

javascript - Bootstrap Popover: iOS Safari strange behaviour -

Website Login Issue developed in magento -

Can the constants be defined inside a model file of a framework in PHP? -