1
0
Fork 0
mirror of https://github.com/GuerillaHQ/now-playing synced 2024-07-05 13:57:57 +00:00
now-playing/.woodpecker.yaml

29 lines
681 B
YAML
Raw Normal View History

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