This commit is contained in:
Drew Halvorsen 2026-08-25 12:12:00 +00:00
commit 02f0799181

29
Jenkinsfile vendored Normal file
View 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"
}
}
}
}