I am just beginning with Jenkins but I could not find how I can zip the package of the master branch after the checkout and save it with the build number version. Could you please assist what should be added to make a ZIP? Job is executed on Docker agent
pipeline {
agent any
stages {
stage ('ZIP stage') {
steps {
echo "Building the zip package"
}
}
}
}
}
Thank you very much for kind assistance!