Rename Jenkinsfile

This commit is contained in:
Mitchell Marino
2022-11-27 19:38:37 -06:00
parent 1764cf9ee1
commit 21429b41ff
Vendored
+22
View File
@@ -0,0 +1,22 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'Building..'
archiveArtifacts artifacts: '/target/school_app_api', fingerprint: true
}
}
stage('Test') {
steps {
echo 'Testing..'
}
}
stage('Deploy') {
steps {
echo 'Deploying....'
}
}
}
}