927a44809b
Signed-off-by: TrueCharts-Bot <bot@truecharts.org>
16 lines
452 B
Bash
Executable File
16 lines
452 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
notify_push_version="$(
|
|
git ls-remote --tags https://github.com/nextcloud/notify_push.git \
|
|
| cut -d/ -f3 \
|
|
| grep -vE -- '-rc|-b' \
|
|
| tr -d '^{}' \
|
|
| sed -E 's/^v//' \
|
|
| sort -V \
|
|
| tail -1
|
|
)"
|
|
|
|
curr_dir=./apps/nextcloud-push-notify
|
|
sed -re 's/^ENV NOTIFY_PUSH_VERSION .*$/ENV NOTIFY_PUSH_VERSION '"$notify_push_version"'/;' -i "$curr_dir/Dockerfile"
|
|
echo "$notify_push_version"
|