31 lines
494 B
YAML
31 lines
494 B
YAML
kind: pipeline
|
|
name: hugo
|
|
type: docker
|
|
platform:
|
|
os: linux
|
|
arch: arm64
|
|
|
|
steps:
|
|
|
|
- name: submodules
|
|
image: alpine/git
|
|
commands:
|
|
- git submodule update --init --recursive
|
|
|
|
- name: build
|
|
image: hypervtechnics/drone-hugo
|
|
settings:
|
|
hugo_version: 0.69.0
|
|
theme: ameida-cv
|
|
extended: true
|
|
validate: true
|
|
config: config.toml
|
|
content: content
|
|
output: ./public
|
|
commands:
|
|
- apk add libc6-compat libstdc++
|
|
- /bin/drone-hugo
|
|
|
|
trigger:
|
|
branch:
|
|
- master |