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)
This commit is contained in:
renaud gaudin 2022-03-30 22:18:42 +00:00
parent bb9331d4f5
commit 4cfc708158
2 changed files with 2 additions and 2 deletions

View File

@ -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/

View File

@ -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