From 91f7381f8c910057bee4433a9f5e894b6709717e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luk=C3=A1=C5=A1=20Kucharczyk?= Date: Tue, 5 Oct 2021 19:35:26 +0200 Subject: [PATCH] Add .drone.yml --- asciidoc/.drone.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 asciidoc/.drone.yml diff --git a/asciidoc/.drone.yml b/asciidoc/.drone.yml new file mode 100644 index 0000000..743e9e5 --- /dev/null +++ b/asciidoc/.drone.yml @@ -0,0 +1,24 @@ +--- +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 \ No newline at end of file