From 19825d15c81a8e6b3bffdc1533d432bb6d313687 Mon Sep 17 00:00:00 2001 From: sthope Date: Mon, 6 Sep 2021 17:06:36 +0200 Subject: [PATCH] initial commit --- .drone.yml | 2 ++ Dockerfile | 5 +++-- README.md | 10 +++++++++- 3 files changed, 14 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 2f658ff..21cbffd 100644 --- a/.drone.yml +++ b/.drone.yml @@ -8,3 +8,5 @@ steps: hugo_version: 0.88.1 pull: always validate: false + commands: + - hugo new site /blog diff --git a/Dockerfile b/Dockerfile index 520c3da..72ea5f9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,7 +10,7 @@ RUN apk add --no-cache \ build-base \ libc6-compat -RUN HUGO=$(curl -Is https://github.com/gohugoio/hugo/releases/latest | grep -Fi Location | sed -E 's/.*tag\/v(.*)/\1/g;' |xargs ) && \ +RUN HUGO=$(curl -s "https://api.github.com/repos/gohugoio/hugo/releases/latest" | awk -F '"' '/tag_name/{print $4}'| sed -E 's/v//g;') && \ export HUGO && \ mkdir -p /usr/local/src && \ cd /usr/local/src && \ @@ -21,4 +21,5 @@ RUN HUGO=$(curl -Is https://github.com/gohugoio/hugo/releases/latest | grep WORKDIR /src -EXPOSE 1313 \ No newline at end of file +EXPOSE 1313 + diff --git a/README.md b/README.md index 3db3f25..c73405e 100644 --- a/README.md +++ b/README.md @@ -1,3 +1,11 @@ # hugo_website -[![Build Status](https://drone.sthope.dev/api/badges/sthope/hugo_website/status.svg)](https://drone.sthope.dev/sthope/hugo_website) \ No newline at end of file +[![Build Status](https://drone.sthope.dev/api/badges/sthope/hugo_website/status.svg)](https://drone.sthope.dev/sthope/hugo_website) + +``` +clear; curl -s "https://api.github.com/repos/gohugoio/hugo/releases/latest" | awk -F '"' '/tag_name/{print $4}' +``` + +``` +docker build --build-arg HUGO_VERSION=0.88.1 --rm -f "Dockerfile" -t hugo:latest . +``` \ No newline at end of file