diff options
Diffstat (limited to 'release/deploy-snapshot.sh')
-rwxr-xr-x | release/deploy-snapshot.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/release/deploy-snapshot.sh b/release/deploy-snapshot.sh index e5d64b0d..9139614b 100755 --- a/release/deploy-snapshot.sh +++ b/release/deploy-snapshot.sh @@ -7,5 +7,5 @@ chmod 600 "$SSHDIR/key" export SERVER_DEPLOY_STRING="$SSH_USERNAME@$SERVER_ADDRESS:$SERVER_DESTINATION" cd "$GITHUB_WORKSPACE/app/build/outputs/apk/release" rm output.json -rsync -ahvcr --omit-dir-times --progress --delete --no-o --no-g -e "ssh -i $SSHDIR/key -o StrictHostKeyChecking=no -p $SSH_PORT" . "$SERVER_DEPLOY_STRING" || true +rsync -ahvcr --omit-dir-times --progress --delete --no-o --no-g -e "ssh -i $SSHDIR/key -o StrictHostKeyChecking=no -p $SSH_PORT" . "$SERVER_DEPLOY_STRING" || exit 1 exit 0 |