surtur
78808084e6
All checks were successful
continuous-integration/drone/push Build is passing
* seen this one coming
16 lines
392 B
YAML
16 lines
392 B
YAML
kind: pipeline
|
|
type: docker
|
|
name: hugo_builder
|
|
|
|
steps:
|
|
- name: hugo-extended
|
|
pull: if-not-exists
|
|
image: archlinux
|
|
commands:
|
|
- pacman -Sy --noconfirm wget tar git
|
|
- wget https://github.com/gohugoio/hugo/releases/download/v0.65.3/hugo_extended_0.65.3_Linux-64bit.tar.gz -O hugo.tgz
|
|
- tar xfv hugo.tgz
|
|
- git submodule init
|
|
- git submodule update
|
|
- ./hugo --gc=true
|