Update jenkinsfile

This commit is contained in:
2025-11-25 13:57:55 +00:00
parent 9241cbd4e2
commit 1ba498e862

View File

@@ -18,7 +18,7 @@ pipeline {
stages {
stage('Checkout sur la branche dev') {
steps {
git branch: 'dev', url: 'https://gitea.unifihomenetwork.com/vincentguillet/gameovergne-app.git'
git branch: 'dev', url: 'https://gitea.vincent-guillet.fr/vincentguillet/gameovergne-app.git'
}
}
@@ -41,13 +41,13 @@ pipeline {
stage('Spring Docker Build') {
steps {
sh 'docker build -t registry.unifihomenetwork.com/gameovergne-api:dev-latest ./api'
sh 'docker build -t registry.vincent-guillet.fr/gameovergne-api:dev-latest ./api'
}
}
stage('Angular Docker Build') {
steps {
sh 'docker build -t registry.unifihomenetwork.com/gameovergne-client:dev-latest ./client'
sh 'docker build -t registry.vincent-guillet.fr/gameovergne-client:dev-latest ./client'
}
}