Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
sikaner authored Dec 12, 2024
1 parent b7863a1 commit 1c101ca
Showing 1 changed file with 20 additions and 21 deletions.
41 changes: 20 additions & 21 deletions Jenkinsfile
Original file line number Diff line number Diff line change
@@ -1,21 +1,20 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'buiding app'
}
}
stage('Test') {
steps {
echo 'testing app'
}
}
stage('Deploy') {
steps {
echo 'deploying app'
}
}
}
}

pipeline {
agent any
stages {
stage('Build') {
steps {
echo 'buiding app'
}
}
stage('Test') {
steps {
echo 'testing app'
}
}
stage('Deploy') {
steps {
echo 'deploying app'
}
}
}
}

0 comments on commit 1c101ca

Please sign in to comment.