From bd803b55dbcc9068c5dfec96eb20e31f48601dd6 Mon Sep 17 00:00:00 2001 From: 12ww1160 <12ww1160@confdroid.com> Date: Sat, 28 Mar 2026 19:04:31 +0100 Subject: [PATCH] add mirror stage --- Jenkinsfile | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Jenkinsfile b/Jenkinsfile index bf64a5b..6dd42c9 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -91,7 +91,7 @@ pipeline { } } - stage('Mirror to Github') { + stage('Mirror to Github - Grizzlycoda') { steps { sshagent(['edd05eb6-26b5-4c7b-a5cc-ea2ab899f4fa']) { sh ''' @@ -101,5 +101,16 @@ pipeline { } } } + + stage('Mirror to Github - 12ww1160') { + steps { + sshagent(['key-github-12ww1160-not-grizzly']) { + sh ''' + git remote set-url --push master git@github.com:12ww1160/puppet_collection.git + git push master --mirror + ''' + } + } + } } }