mirror of
https://github.com/nextcloud/docker.git
synced 2025-04-25 12:50:54 +02:00
Use the downloads index to get the latest version
This commit is contained in:
parent
aa40fa7a75
commit
d365e45c02
2 changed files with 8 additions and 8 deletions
|
@ -40,11 +40,11 @@ join() {
|
|||
echo "${out#$sep}"
|
||||
}
|
||||
|
||||
latest=$(curl -fsSL 'https://nextcloud.com/changelog/' |tac|tac \
|
||||
| grep -o "\(Version\|Release\)\s\+[[:digit:]]\+\(.[[:digit:]]\+\)\+" \
|
||||
| awk '{ print $2 }' \
|
||||
| sort -uV \
|
||||
| tail -1)
|
||||
latest=$( curl -fsSL 'https://download.nextcloud.com/server/releases/' |tac|tac| \
|
||||
grep -oE 'nextcloud-[[:digit:]]+(.[[:digit:]]+)+' | \
|
||||
grep -oE '[[:digit:]]+(.[[:digit:]]+)+' | \
|
||||
sort -uV | \
|
||||
tail -1 )
|
||||
|
||||
# Generate each of the tags.
|
||||
versions=( */ )
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue