-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
10 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,4 +48,13 @@ jobs: | |
# as to a) not needlessly modify metadata, and b) so that the file | ||
# change information (admittedly not very accessible in most | ||
# browsers) stays accurate. | ||
rsync -e "ssh -p${SECRET_PORT}" -vr --delete bin/nrf52840dongle/target/thumbv7em-none-eabihf/doc/* [email protected]:/ | ||
# | ||
# --delete-after ensures that static.files/search-${SOMEHEX} remains | ||
# accessible until the last file is refreshed -- otherwise, newer | ||
# HTML files can get into an endless self-refresh loop during a | ||
# transmission, or (worse) when an upload was aborted. (The presence | ||
# of that hash sadly also means that the excluded `-t` above won't be | ||
# much help, as the files change all the time anyway -- still, at | ||
# least we don't change the time on a complete no-op rsync when | ||
# hopefully the hash is stable). | ||
rsync -e "ssh -p${SECRET_PORT}" -vr --delete --delete-after bin/nrf52840dongle/target/thumbv7em-none-eabihf/doc/* [email protected]:/ |