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.
This commit is contained in:
parent
dfb4a3bd02
commit
263b1844dc
2
.github/workflows/docs_update.yml
vendored
2
.github/workflows/docs_update.yml
vendored
@ -60,5 +60,5 @@ jobs:
|
|||||||
echo "$DOCS_WEBSITE_KEY" > "$HOME/.ssh/docs_website_key"
|
echo "$DOCS_WEBSITE_KEY" > "$HOME/.ssh/docs_website_key"
|
||||||
chmod 600 "$HOME/.ssh/docs_website_key"
|
chmod 600 "$HOME/.ssh/docs_website_key"
|
||||||
echo "$DOCS_WEBSITE_SSH_CONFIG" > "$HOME/.ssh/config"
|
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)
|
2> >(grep -v "Warning: Permanently added" 1>&2)
|
||||||
|
Loading…
Reference in New Issue
Block a user