From d95a8ba6ced1655f016b0d2c9cd4ce5ebf2e4924 Mon Sep 17 00:00:00 2001 From: infl00p Date: Tue, 14 Sep 2021 16:21:15 +0300 Subject: [PATCH] Pipeline support - fix --- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 8429968..415ee13 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -11,13 +11,13 @@ spec: image: 'jenkins/inbound-agent' args: ['\$(JENKINS_SECRET)', '\$(JENKINS_NAME)'] - name: hugo - image: klakegg/hugo + image: klakegg/hugo:debian command: - sleep args: - 1d - name: tea - image: 'tgerczei/tea' + image: 'alpine' command: - sleep args: @@ -69,7 +69,7 @@ spec: steps { container('tea') - sh 'go get code.gitea.io/tea && go install code.gitea.io/tea' + sh 'apk update && apk add tea' sh "tea login add -n ${GITEA_LOGIN}" sh 'tea r create -t ${BUILD_TAG} --tag ${BUILD_NUMBER} -a site.tar.gz' }