diary-website

Website for diary
git clone https://git.in0rdr.ch/diary-website.git
Log | Files | Refs | Pull requests |Archive | README | LICENSE

Jenkinsfile (300B)


      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-diary", "${scmVars.GIT_COMMIT}")
     10   buildahpush.execute("jekyll-diary", "${scmVars.GIT_COMMIT}")
     11 }