website/.woodpecker.yaml

20 lines
471 B
YAML
Raw Normal View History

2020-09-03 10:20:10 +00:00
steps:
2023-10-30 11:13:19 +00:00
build:
image: registry.nemunai.re/plugins/hugo
2020-09-03 10:20:10 +00:00
settings:
hugo_version: 0.119.0
2020-09-03 10:20:10 +00:00
2023-10-30 11:13:19 +00:00
publish-on-s3:
image: woodpeckerci/plugin-s3
2020-09-03 10:20:10 +00:00
settings:
2022-01-18 06:59:34 +00:00
endpoint: https://storage.nemunai.re
path_style: true
bucket: happydomain-htdocs
access_key:
from_secret: s3_access_key
secret_key:
from_secret: s3_secret_key
source: public/**/*
strip_prefix: public/
2023-10-30 11:13:19 +00:00
target: "/${CI_COMMIT_BRANCH//\\//-}"