mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2026-04-15 21:45:13 +02:00
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
|
|
@ -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