Compare commits
3 Commits
f1a1204417
...
e52a9bf189
Author | SHA1 | Date |
---|---|---|
s00ner | e52a9bf189 | |
s00ner | 3613d83934 | |
s00ner | 89b937ea21 |
|
@ -2,19 +2,37 @@ pipeline {
|
|||
agent any
|
||||
|
||||
stages {
|
||||
stage('Do nothing') {
|
||||
stage('Deploy Main branch') {
|
||||
when {
|
||||
branch 'main'
|
||||
}
|
||||
steps {
|
||||
sh '/bin/true'
|
||||
sshagent(credentials: ['baltimore-wiki']) {
|
||||
sh '''
|
||||
sh '''
|
||||
[ -d ~/.ssh ] || mkdir ~/.ssh && chmod 0700 ~/.ssh
|
||||
ssh-keyscan -t rsa,dsa baltimore-wiki.lxd >> ~/.ssh/known_hosts
|
||||
ssh mdbook@baltimore-wiki.lxd << EOF
|
||||
echo "testing" >> ~/test
|
||||
echo "main branch" >> ~/test
|
||||
EOF
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
stage('Deploy Testing branch') {
|
||||
when {
|
||||
branch 'testing'
|
||||
}
|
||||
steps {
|
||||
sshagent(credentials: ['baltimore-wiki']) {
|
||||
sh '''
|
||||
[ -d ~/.ssh ] || mkdir ~/.ssh && chmod 0700 ~/.ssh
|
||||
ssh-keyscan -t rsa,dsa baltimore-wiki.lxd >> ~/.ssh/known_hosts
|
||||
ssh mdbook@baltimore-wiki.lxd << EOF
|
||||
echo "testing branch" >> ~/test
|
||||
EOF
|
||||
'''
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue