Jenkinsfile (304B)
1 @Library('in0rdr-jenkins-lib@master') _ 2 3 def buildahbud = new BuildahBud(this) 4 def buildahpush = new BuildahPush(this) 5 6 node('podman'){ 7 scmVars = checkout(scm) 8 9 buildahbud.execute([:], ".", "jekyll-myheats", "${scmVars.GIT_COMMIT}") 10 buildahpush.execute("jekyll-myheats", "${scmVars.GIT_COMMIT}") 11 }