add ATOM output
ci/woodpecker/push/woodpecker Pipeline was successful Details

main
Ariadne Conill 2022-08-02 18:32:33 -05:00
parent eaa89c6db5
commit 188f9bde97
4 changed files with 21 additions and 2 deletions

View File

@ -7,7 +7,7 @@ pipeline:
echo "$SSH_KEY">$HOME/.ssh/id_ed25519
echo "$SSH_KNOWN_HOSTS">$HOME/.ssh/known_hosts
chown 600 $HOME/.ssh/id_ed25519
- apk add hugo rsync openssh-client
- apk add hugo rsync openssh-client go git
- hugo
- rsync -avzHAX public/ kaniini@ariadne.space:public/
secrets: [SSH_KEY, SSH_KNOWN_HOSTS]

View File

@ -1,9 +1,21 @@
baseURL: https://ariadne.space/
languageCode: en-us
title: Ariadne's Space
summaryLength: 50
permalinks:
blog: /:year/:month/:day/:title/
markup:
highlight:
noClasses: false
summaryLength: 50
module:
imports:
- path: "github.com/kaushalmodi/hugo-atom-feed"
outputs:
home:
- HTML
- RSS
- ATOM

5
go.mod Normal file
View File

@ -0,0 +1,5 @@
module ariadne.space
go 1.17
require github.com/kaushalmodi/hugo-atom-feed v0.2.0 // indirect

2
go.sum Normal file
View File

@ -0,0 +1,2 @@
github.com/kaushalmodi/hugo-atom-feed v0.2.0 h1:7jeUfQTBal7SjcAR0fPMKIsfMXb8OLoTo1BPMkLO1vQ=
github.com/kaushalmodi/hugo-atom-feed v0.2.0/go.mod h1:eNCxNrqVpeR5IvtTrAB1J8ruthtI3KtHMlOIwp0rafo=