Use explicit Gradle tasks to handle build artifact collection (#1745)
This commit is contained in:
parent
f08ad35d2e
commit
acc448ce74
10 changed files with 98 additions and 13 deletions
|
@ -11,8 +11,5 @@ mkdir -p "$SSHDIR"
|
|||
echo "$ACTIONS_DEPLOY_KEY" > "$SSHDIR/key"
|
||||
chmod 600 "$SSHDIR/key"
|
||||
export SERVER_DEPLOY_STRING="$SSH_USERNAME@$SERVER_ADDRESS:$SERVER_DESTINATION"
|
||||
mkdir -p "$GITHUB_WORKSPACE/APS"
|
||||
cp -v ./app/build/outputs/apk/free/release/*.apk "$GITHUB_WORKSPACE/APS/"
|
||||
cp -v ./app/build/outputs/apk/nonFree/release/*.apk "$GITHUB_WORKSPACE/APS/"
|
||||
cd "$GITHUB_WORKSPACE/APS"
|
||||
cd "$GITHUB_WORKSPACE/app/outputs/"
|
||||
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"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue