From e63e87fe290363b0c1bb5a508801535b5a461317 Mon Sep 17 00:00:00 2001 From: Vulpovile Date: Sun, 13 Apr 2025 09:53:35 -0700 Subject: [PATCH] Fix Syntax --- Jenkinsfile | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/Jenkinsfile b/Jenkinsfile index 30ef6da..822fd02 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,8 +17,10 @@ pipeline { """ } } - steps('Archive') { - archiveArtifacts artifacts: 'Installer\\Output\\Blocks3D_Setup_*,Installer\\Output\\B3DSTP*', fingerprint: true + stage('Archive') { + steps { + archiveArtifacts artifacts: 'Installer\\Output\\Blocks3D_Setup_*,Installer\\Output\\B3DSTP*', fingerprint: true + } } } }