From 4cfc7081583338cfa6ed9457336ca1a3beac2494 Mon Sep 17 00:00:00 2001 From: renaud gaudin Date: Wed, 30 Mar 2022 22:18:42 +0000 Subject: [PATCH] Target uploads to new dropbox address SSH server which was used to receive file uploads (CI, nightly and release) has been migrated to a new one on a different address. Username, Key and paths are unchanged. Most notable changes are the use of master.download.kiwix.org as the target in replacement of mirror.download.kiwix.org (although it would still work) and the Port to which SSH is listening on (30022 instead of 22) --- .github/workflows/nightly.yml | 2 +- .github/workflows/release.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 5b5d76bce..e431882fa 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -69,5 +69,5 @@ jobs: run: | mkdir $DATE cp $UNIVERSAL_DEBUG_APK $DATE - scp -vrp -i ssh_key -o StrictHostKeyChecking=no $DATE ci@download.kiwix.org:/data/download/nightly/ + scp -P 30022 -vrp -i ssh_key -o StrictHostKeyChecking=no $DATE ci@master.download.kiwix.org:/data/download/nightly/ diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c02e74dc7..b1c8c0c18 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -47,7 +47,7 @@ jobs: run: | ./gradlew assembleRelease cp $UNIVERSAL_RELEASE_APK kiwix-${TAG}.apk - scp -vrp -i ssh_key -o StrictHostKeyChecking=no kiwix-${TAG}.apk ci@download.kiwix.org:/data/download/release/kiwix-android/ + scp -P 30022 -vrp -i ssh_key -o StrictHostKeyChecking=no kiwix-${TAG}.apk ci@master.download.kiwix.org:/data/download/release/kiwix-android/ - name: Publish to github releases uses: ncipollo/release-action@v1