distorsion.interhacker.space/.drone.yml

30 lines
617 B
YAML

---
kind: pipeline
name: default
steps:
- name: build
image: alpine:3.17.2
commands:
- apk update
- apk add hugo
- hugo --config ./hugo.toml
- name: upload
image: plugins/s3
settings:
bucket: distorsion.interhacker.space
endpoint: https://garage.deuxfleurs.fr
region: garage
access_key:
from_secret: aws_access_key_id
secret_key:
from_secret: aws_secret_access_key
source: public/**/*
target: /
strip_prefix: public/
---
kind: signature
hmac: df6b52d9df69585198a43891c53ba1557968c3745d8c1028da75d55fbfbdf763
...