Skip to content
This repository was archived by the owner on Jan 23, 2025. It is now read-only.

Commit a660f66

Browse files
authored
Update storage backend that is used to check for new releases
1 parent 883fa50 commit a660f66

File tree

1 file changed

+4
-6
lines changed

1 file changed

+4
-6
lines changed

.github/workflows/check_for_playstore_releases.yml

+4-6
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,10 @@ jobs:
2323
- name: Creating rclone config to upload the cache
2424
run: |
2525
mkdir -p $HOME/.config/rclone/
26-
echo '[sync]' > $HOME/.config/rclone/rclone.conf
27-
echo 'type = s3' >> $HOME/.config/rclone/rclone.conf
28-
echo 'provider = Wasabi' >> $HOME/.config/rclone/rclone.conf
29-
echo 'env_auth = true' >> $HOME/.config/rclone/rclone.conf
30-
echo 'endpoint = s3.wasabisys.com' >> $HOME/.config/rclone/rclone.conf
31-
echo 'acl = public-read' >> $HOME/.config/rclone/rclone.conf
26+
echo 'type = sftp' >> $HOME/.config/rclone/rclone.conf
27+
echo 'host = ${{ secrets.STORAGE_HOST }}' >> $HOME/.config/rclone/rclone.conf
28+
echo 'user = storage' >> $HOME/.config/rclone/rclone.conf
29+
echo 'key_pem = ${{ secrets.STORAGE_KEY }}' >> $HOME/.config/rclone/rclone.conf
3230
3331
- name: Downloading check_for_playstore_releases.sh script
3432
run: wget https://raw.githubusercontent.com/kiwibrowser/src/master/.github/workflows/check_for_playstore_releases.sh

0 commit comments

Comments
 (0)