release/deploy-snapshot: Don't swallow errors (#724)
Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
This commit is contained in:
parent
aaeb899fb6
commit
7ce8831401
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue