You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
827 B
24 lines
827 B
/* Do not edit this file. This is how the site gets built and deployed. |
|
Are there better/cheaper/different ways to build and host a static site? |
|
Yes. I'm aware. I have my reasons. Don't bug me about it. |
|
*/ |
|
pipeline { |
|
options { |
|
skipDefaultCheckout true |
|
} |
|
agent any |
|
stages { |
|
stage('Everything') { |
|
agent { label 'prod_web' } |
|
steps { |
|
sh ''' |
|
cd $(mktemp -d); |
|
wget http://gittea.lxd:3000/s00ner/Baltimore-hackthebox-knowledgebase/archive/main.tar.gz; |
|
tar -xf main.tar.gz; |
|
rsync --recursive --exclude 'Jenkinsfile' --delete ./baltimore-hackthebox-knowledgebase/ /home/mdbook/wiki/src/; |
|
rm -rf $(pwd); |
|
''' |
|
} |
|
} |
|
} |
|
} |