help/.woodpecker.yaml

27 lines
543 B
YAML
Raw Normal View History

2020-11-23 12:05:09 +00:00
clone:
2023-10-27 19:43:03 +00:00
git:
image: woodpeckerci/plugin-git
settings:
recursive: true
2020-11-23 12:05:09 +00:00
steps:
2023-10-27 19:43:03 +00:00
build:
2020-11-23 12:05:09 +00:00
image: plugins/hugo
settings:
hugo_version: 0.70.0
validate: true
2023-10-27 19:43:03 +00:00
publish-on-s3:
2022-01-18 07:04:35 +00:00
image: plugins/s3
2020-11-23 12:05:09 +00:00
settings:
2022-01-18 07:04:35 +00:00
endpoint: https://storage.nemunai.re
path_style: true
bucket: happydomain-help
access_key:
from_secret: s3_access_key
secret_key:
from_secret: s3_secret_key
source: public/**/*
strip_prefix: public/
2023-10-27 19:43:03 +00:00
target: "/${CI_COMMIT_BRANCH//\\//-}"