diff --git a/.drone.yml b/.drone.yml new file mode 100644 index 0000000..3980085 --- /dev/null +++ b/.drone.yml @@ -0,0 +1,26 @@ +kind: pipeline +type: docker +name: hugo_builder + +steps: +- name: hugo-std + pull: if-not-exists + image: plugins/hugo + settings: + hugo_version: 0.65.3 + validate: false + commands: + - git submodule init + - git submodule update + - hugo --gc=true + +- name: hugo-extended + pull: if-not-exists + image: archlinux + commands: + - pacman -Syu --noconfirm wget tar + - 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 diff --git a/content/about/index.md b/content/about/index.md index a94d1c2..46111b4 100644 --- a/content/about/index.md +++ b/content/about/index.md @@ -1,4 +1,3 @@ # about dotya.ml Free services provided for fun as a hobby. So far we have [gitea](https://git.dotya.ml) and a [drone](https://drone.dotya.ml) ci/cd instance. -