24 lines
453 B
YAML
24 lines
453 B
YAML
|
---
|
||
|
kind: pipeline
|
||
|
name: upload to minio
|
||
|
|
||
|
steps:
|
||
|
- name: upload
|
||
|
image: plugins/s3
|
||
|
settings:
|
||
|
bucket: kucharczyk.xyz
|
||
|
access_key:
|
||
|
from_secret: minio_kucharczyk_xyz_access_key
|
||
|
secret_key:
|
||
|
from_secret: minio_kucharczyk_xyz_secret_key
|
||
|
source: asciidoc/**
|
||
|
strip_prefix: asciidoc/
|
||
|
path_style: true
|
||
|
target: /
|
||
|
endpoint: https://bucket.kucharczyk.xyz
|
||
|
trigger:
|
||
|
event:
|
||
|
- push
|
||
|
- cron
|
||
|
exclude:
|
||
|
- pull_request
|