Hello,
I have set up a new account and have a Hugo project I wish to integrate with Circlie.ci
I have linked a Hugo repo from my GitHub account and added the required folder structure and config file (.circle.ci > config.yml ).
Here is a link to my repo on Github
Below is what I have in the config.yml file.
version: 2
jobs:
build:
docker:
# specify the version
- image: cibuilds/hugo:0.28
working_directory: ~/hugo
environment:
HUGO_BUILD_DIR: ~/hugo/public
steps:
- run: apk update && apk add git
- checkout
- run: git submodule sync && git submodule update --init
# specify any bash command here prefixed with `run: `
- run:
name: "Run Hugo"
command: HUGO_ENV=production hugo -v -s public/
However when building the job in Circle.ci I get the following error. Could anyone help me resolve this please?
Build-agent version 0.0.7142-c39a0c7 (2018-07-02T14:31:47+0000)
Starting container cibuilds/hugo:0.28
image cache not found on this host, downloading cibuilds/hugo:0.28
Error response from daemon: manifest for cibuilds/hugo:0.28 not found
Any help would be appreciated.
Best regards,
Ben Waller