blog/.woodpecker.yaml

26 lines
543 B
YAML
Raw Permalink Normal View History

2023-10-27 11:21:22 +00:00
clone:
git:
image: woodpeckerci/plugin-git
settings:
recursive: true
2021-07-10 17:14:04 +00:00
steps:
2023-10-27 11:21:22 +00:00
build:
2023-12-04 17:33:48 +00:00
image: registry.nemunai.re/plugins/hugo
2021-07-10 17:14:04 +00:00
settings:
2023-12-04 17:33:48 +00:00
hugo_version: 0.119.0
2021-07-10 17:14:04 +00:00
2023-10-27 11:21:22 +00:00
publish-on-s3:
2022-01-18 07:05:15 +00:00
image: plugins/s3
2021-07-10 17:14:04 +00:00
settings:
2022-01-18 07:05:15 +00:00
endpoint: https://storage.nemunai.re
path_style: true
bucket: happydomain-blog
access_key:
from_secret: s3_access_key
secret_key:
from_secret: s3_secret_key
source: public/**/*
strip_prefix: public/
2023-10-27 11:21:22 +00:00
target: "/${CI_COMMIT_BRANCH//\\//-}"