From 601d569bad1632a010da367ffb3d64b366fe57dc Mon Sep 17 00:00:00 2001 From: Benjamin Date: Mon, 13 Feb 2017 15:46:56 +0100 Subject: [PATCH] update Readme --- README.md | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 79305ee..5c2e44d 100644 --- a/README.md +++ b/README.md @@ -27,15 +27,21 @@ This project's static Pages are built by [GitLab CI][ci], following the steps defined in [`.gitlab-ci.yml`](.gitlab-ci.yml): ``` -image: alpine:3.4 +image: alpine:3.5 before_script: - apk update && apk add openssl - - wget https://github.com/spf13/hugo/releases/download/v0.16/hugo_0.16_linux-64bit.tgz - - echo "37ee91ab3469afbf7602a091d466dfa5 hugo_0.16_linux-64bit.tgz" | md5sum -c - - tar xf hugo_0.16_linux-64bit.tgz && cp ./hugo /usr/bin + - wget https://github.com/spf13/hugo/releases/download/v0.18.1/hugo_0.18.1_Linux-64bit.tar.gz + - echo "e8ba723c508e87912970f132534c64dc hugo_0.18.1_Linux-64bit.tar.gz" | md5sum -c + - tar xf hugo_0.18.1_Linux-64bit.tar.gz --strip-components=1 && mv hugo_0.18.1_linux_amd64 hugo && cp ./hugo /usr/bin - hugo version +test: + script: + - hugo + except: + - master + pages: script: - hugo @@ -72,7 +78,7 @@ project's **Settings**. You'll need to configure your site too: change this line in your `config.toml`, from `"https://pages.gitlab.io/hugo/"` to `baseurl = "https://namespace.gitlab.io"`. -Proceed equaly if you are using a [custom domain][post]: `baseurl = "http(s)://example.com"`. +Proceed equaly if you are using a [custom domain][post]: `baseurl = "http(s)://example.com"`. Read more about [user/group Pages][userpages] and [project Pages][projpages].