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' }
environment {
RELEASE = "0.0.1"
RELEASE = "latest"
}
stages {
stage('Build static content') {
steps {
sh '''
npm install
npm run build
pwd
echo
#npm install
#npm run build
#pwd
#echo
docker build --progress=plain -t bbuddy/bbuddy_ui:${RELEASE} .
'''
}