From b190def36fab6bf62e3e69382f8da9783b44a121 Mon Sep 17 00:00:00 2001 From: Ellpeck Date: Sun, 16 Jul 2023 22:13:50 +0200 Subject: [PATCH] readme cleanup --- nextcloud-upload/README.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/nextcloud-upload/README.md b/nextcloud-upload/README.md index a115fdb..ff1a84b 100644 --- a/nextcloud-upload/README.md +++ b/nextcloud-upload/README.md @@ -25,13 +25,15 @@ steps: - "**/*.md" dest: Uploads/CoolMarkdownFiles # the destination directory - # optional settings + # optional retention settings, useful if old builds should be deleted automatically + retentionamount: 7 # amount of children that retentionbase is allowed to have before oldest ones are deleted on upload + retentionbase: Uploads # directory that the retentionamount applies to + + # misc optional settings basedir: "." # local base directory for files, defaults to . chunksize: # chunk size in bytes, defaults to 10485760, or 10 MiB quiet: false # whether to reduce output tags: # a set of tags to apply to uploaded files, tag is expected to already exist - mytag flatten: false # whether to flatten directories, causing all files to be placed directly in dest - retentionamount: 7 # amount of children that retentionbase is allowed to have before oldest ones are deleted on upload - retentionbase: Uploads # directory that the retentionamount applies to ```