RELEASE set to latest

This commit is contained in:
Witalij Poljatchek 2024-07-17 21:58:08 +02:00
parent e926d4cb4a
commit a9387b1f28
1 changed files with 5 additions and 5 deletions

10
Jenkinsfile vendored
View File

@ -2,16 +2,16 @@ pipeline {
agent { label 'jenkins-nodejs-agent' } agent { label 'jenkins-nodejs-agent' }
environment { environment {
RELEASE = "0.0.1" RELEASE = "latest"
} }
stages { stages {
stage('Build static content') { stage('Build static content') {
steps { steps {
sh ''' sh '''
npm install #npm install
npm run build #npm run build
pwd #pwd
echo #echo
docker build --progress=plain -t bbuddy/bbuddy_ui:${RELEASE} . docker build --progress=plain -t bbuddy/bbuddy_ui:${RELEASE} .
''' '''
} }