From df09bd6e844a6be36ab9bac8eab88ce1973e2ee2 Mon Sep 17 00:00:00 2001 From: infl00p Date: Tue, 14 Sep 2021 18:14:13 +0300 Subject: [PATCH] Pipeline support - release name fix --- Jenkinsfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index 19fd1e1..f5d41b6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -74,7 +74,7 @@ spec: container('tea') { sh 'ls -la && pwd && apk update && apk add --no-cache -X http://dl-cdn.alpinelinux.org/alpine/edge/testing tea' sh "tea login add -n ${GITEA_LOGIN}" - sh "tea r create -t ${BUILD_TAG} --tag ${BUILD_NUMBER} -a site.tar.gz --repo hellug/www" + sh "tea r create -t r${BUILD_TAG} --tag r${BUILD_NUMBER} -a site.tar.gz --repo hellug/www" } } }