Skip to content

Instantly share code, notes, and snippets.

View katcaola's full-sized avatar
:atom:

Kat Caola katcaola

:atom:
  • Mobile Industrial Robots A/S
  • Earth
View GitHub Profile
// This was failing my build:
archiveArtifacts artifacts: '**/${env.DOCKER_FILE_NAME}', fingerprint: false
// SHOULD BE THIS
archiveArtifacts artifacts: "**/${env.DOCKER_FILE_NAME}", fingerprint: false
------------------------------------------------------------------------------------------------------------
// If you need vars that are global and changeable, you need them outside of the pipeline
VAR="value"
pipeline {
...
}