diff --git a/.gitignore b/.gitignore index af6dfd4..65c35e0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,3 @@ public -resources \ No newline at end of file +resources +.hugo_build.lock \ No newline at end of file diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..561793f --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,9 @@ +pipeline: + build: + image: golang + environment: + - HUGO_VERSION=0.102.3 + commands: + - wget https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.deb + - dpkg -i hugo_extended_${HUGO_VERSION}_Linux-64bit.deb + - hugo \ No newline at end of file