Browse Source

remove dry-run on sync script; replace with -c for partial build

Dan Allen 2 years ago
parent
commit
51fa7c0c34
1 changed files with 1 additions and 1 deletions
  1. 1 1
      .github/actions/publish-docs.sh

+ 1 - 1
.github/actions/publish-docs.sh

@@ -20,7 +20,7 @@ fi
   echo "$SSH_KNOWN_HOST" > ~/.ssh/known_hosts
   RSYNC_OPTS='-avz --delete'
   if [ -n "$BUILD_REFNAME" ]; then
-    RSYNC_OPTS="-n $RSYNC_OPTS$(find $FROM -mindepth 1 -maxdepth 1 \! -name 404.html \! -name '.*' -type f -printf ' --include /%P')"
+    RSYNC_OPTS="-c $RSYNC_OPTS$(find $FROM -mindepth 1 -maxdepth 1 \! -name 404.html \! -name '.*' -type f -printf ' --include /%P')"
     RSYNC_OPTS="$RSYNC_OPTS$(find $FROM -mindepth 1 -maxdepth 1 -type d \! -name _ -printf ' --include /%P --include /%P/**') --exclude **"
   fi
   rsync $RSYNC_OPTS -e "ssh -i $SSH_PRIVATE_KEY_PATH" $FROM/ "$HOST:$HOST_PATH"