Skip to content

Commit df87a61

Browse files
authored
commit
1 parent 375bc41 commit df87a61

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

008-form wave animation/jenkinsfile

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
pipeline {
2+
agent any
3+
stages {
4+
stage('git clone') {
5+
steps {
6+
git credentialsId: 'db19ea6c-0005-4434-b2f8-02385c2dccce', url: 'git@github.com:CloudGithub1/html-css-javascript-projects.git'
7+
}
8+
}
9+
stage('Test') {
10+
steps {
11+
echo "we are good to go"
12+
}
13+
}
14+
stage('Deploy') {
15+
steps {
16+
echo "will try our best"
17+
}
18+
}
19+
}
20+
}

0 commit comments

Comments
 (0)