commit 02f07991818ad55480618332c8df789bb149d22b Author: Drew Halvorsen Date: Tue Aug 25 12:12:00 2026 +0000 seed diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..37ff92b --- /dev/null +++ b/Jenkinsfile @@ -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" + } + } + } +}