seed
This commit is contained in:
commit
02f0799181
29
Jenkinsfile
vendored
Normal file
29
Jenkinsfile
vendored
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
// Riskiens marketing site — Jenkins (archived 2024-11).
|
||||||
|
// Target bucket is gone; pipeline kept for audit.
|
||||||
|
|
||||||
|
pipeline {
|
||||||
|
agent any
|
||||||
|
options { timestamps() }
|
||||||
|
environment {
|
||||||
|
WIN_DEPLOY_USER = 'alice'
|
||||||
|
}
|
||||||
|
stages {
|
||||||
|
stage('Checkout') {
|
||||||
|
steps {
|
||||||
|
checkout scm
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Build') {
|
||||||
|
steps {
|
||||||
|
sh 'echo "jekyll build"'
|
||||||
|
}
|
||||||
|
}
|
||||||
|
stage('Deploy') {
|
||||||
|
when { branch 'main' }
|
||||||
|
steps {
|
||||||
|
// codeowners: bob
|
||||||
|
echo "deploy skipped — ${env.WIN_DEPLOY_USER}@corp.local share retired"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user