1
0
Fork 0
mirror of https://github.com/GuerillaStudio/now-playing synced 2024-10-18 10:17:29 +00:00
now-playing/.woodpecker.yaml
Tixie 18061a3981
Some checks are pending
ci/woodpecker/push/woodpecker Pipeline is pending
Update Woodpecker(CI) config
2024-10-06 00:09:24 +02:00

32 lines
764 B
YAML

---
when:
event: [tag, push, release, deployment, cron, manual]
branch: [main]
steps:
- name: build hugo
image: alpine:3.19.1
commands:
- export UMAMI_DOMAIN=$UMAMI_DOMAIN
- export UMAMI_ID=$UMAMI_ID
- apk update
- apk add hugo
- hugo -b 'https://music.guerilla.studio'
secrets: [ 'umami_domain', 'umami_id' ]
- name: upload
when:
branch:
- main
image: plugins/s3
settings:
bucket: music.guerilla.studio
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/
path_style: true