Bot Updating Templated Files

This commit is contained in:
LinuxServer-CI 2022-02-11 15:18:50 +01:00
parent f0ce63071a
commit 4f201e303a

2
Jenkinsfile vendored
View File

@ -107,7 +107,7 @@ pipeline {
steps{
script{
env.EXT_RELEASE = sh(
script: ''' curl -sX GET 'https://api.github.com/repos/phpmyadmin/phpmyadmin/releases' | jq -r 'first(.[] | select(.name | startswith("5"))) | .name' ''',
script: ''' curl -sX GET 'https://api.github.com/repos/phpmyadmin/phpmyadmin/releases' | jq -r 'first(.[] | select(.name | startswith("5")) | select (.prerelease==false)) | .name' ''',
returnStdout: true).trim()
env.RELEASE_LINK = 'custom_command'
}