mirror of
https://github.com/android-password-store/Android-Password-Store.git
synced 2025-09-06 04:51:38 +02:00
* Fill OTP fields with SMS codes * Allow SMS OTP fill also for web origins * Introduce free and nonFree build variants * Fix up workflow * Improve layout and feature detection * Workflow changes * Add Changelog entry * github: update release workflow for nonFree/Free split Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> * Switch to lifecycleScope * github: make snapshot deploy free variant Signed-off-by: Harsh Shandilya <me@msfjarvis.dev> Co-authored-by: Harsh Shandilya <me@msfjarvis.dev>
12 lines
457 B
Bash
Executable file
12 lines
457 B
Bash
Executable file
#!/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/free/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" || exit 1
|
|
exit 0
|