From 263b1844dc5a7ac08feaed3620e07e039b8fd49e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Mon, 28 Mar 2022 11:44:48 +0200 Subject: [PATCH] Show only the updated files when uploading the docs Don't use rsync "--verbose" option as it's too verbose, show just the names of the files being uploaded. --- .github/workflows/docs_update.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docs_update.yml b/.github/workflows/docs_update.yml index cb93db4173..8a1cf19845 100644 --- a/.github/workflows/docs_update.yml +++ b/.github/workflows/docs_update.yml @@ -60,5 +60,5 @@ jobs: echo "$DOCS_WEBSITE_KEY" > "$HOME/.ssh/docs_website_key" chmod 600 "$HOME/.ssh/docs_website_key" echo "$DOCS_WEBSITE_SSH_CONFIG" > "$HOME/.ssh/config" - rsync --checksum --compress --delete --recursive --verbose out/html/ wxdocs:public_html/latest/ \ + rsync --checksum --compress --delete --out-format='%n' --recursive out/html/ wxdocs:public_html/latest/ \ 2> >(grep -v "Warning: Permanently added" 1>&2)