Skip to content

Commit 2542b7e

Browse files
authored
Switch to rsync
1 parent 8482117 commit 2542b7e

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/generate-web-index.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,11 @@ jobs:
6363
rm -f exposed.map.autoproposal
6464
6565
# get all stable files we provide
66-
rsync -e "ssh -p 10023 -o StrictHostKeyChecking=accept-new" -ar [email protected]:/storage/www/dl/ | awk '{ print $5 }' | grep "archive/" | grep -v ".txt\|.xz.\|homeassistant\|openhab\|kali\|omv" | grep ".xz" > /tmp/stable.txt
66+
rsync --recursive --list-only rsync://rsync.armbian.com/dl/ \
67+
| awk '{ print $5 }' \
68+
| grep '\.xz$' \
69+
| grep -vE '\.txt|\.xz\.|homeassistant|openhab|kali|omv' \
70+
> /tmp/stable.txt
6771
6872
# generate map entries
6973
# $1 = board

0 commit comments

Comments
 (0)