diff options
author | Harsh Shandilya <msfjarvis@gmail.com> | 2019-12-16 03:19:18 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-16 03:19:18 +0530 |
commit | e61551bf3756a49f9eb4ee03bd726f3c6167dad7 (patch) | |
tree | 2a4c60c76aa6b24fb492cb2ea57def3cc29483c7 /release/deploy-snapshot.sh | |
parent | 3a7c54136047c5d2d7bb807100bcc40affad65d2 (diff) |
Setup snapshot deployment (#599)
* Setup snapshot deployment
* README: Update repository links
* README: Update workflow badge link
* README: Add link to Snapshot builds
* Fix snapshot/pull-request build conflict
* Deploy from feature/deploy-snapshots as well
* Revert "Deploy from feature/deploy-snapshots as well"
Confirmed it works well
This reverts commit 06f6bc0e8c19f238643655d09ca20f83dd416283.
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
Diffstat (limited to 'release/deploy-snapshot.sh')
-rwxr-xr-x | release/deploy-snapshot.sh | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/release/deploy-snapshot.sh b/release/deploy-snapshot.sh new file mode 100755 index 00000000..e5d64b0d --- /dev/null +++ b/release/deploy-snapshot.sh @@ -0,0 +1,11 @@ +#!/usr/bin/env sh + +export SSHDIR="$HOME/.ssh" +mkdir -p "$SSHDIR" +echo "$ACTIONS_DEPLOY_KEY" > "$SSHDIR/key" +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 +exit 0 |