corrects detection script for alpine

This commit is contained in:
Hyatt 2022-06-10 11:09:44 -05:00
parent 21a626c645
commit 059a1d20b3
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -43,21 +43,20 @@ pipeline {
if ! command -v git &> /dev/null; then
apk add --no-cache git
fi
apk add --no-cache git
"""
k8slensVersion = "refs/tags/" + sh (
script: """
git \
-c 'versionsort.suffix=-' \
--exit-code \
--refs \
--sort='version:refname' \
--tags \
ls-remote ssh://git@gitea.smoothnet.org:31822/nhyatt/openlens.git 'v*.*.*' \
| tail \
--lines=1 \
ls-remote https://gitea.smoothnet.org/nhyatt/openlens.git 'v*.*.*' \
| cut \
--delimiter='/' \
--fields=3
--fields=3 \
| sort \
-u \
| tail \
-n 1
""",
returnStdout: true
).trim()