myheats-website

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

commit d5d68276d4fd9a63deb9496d9253eaed24c27d8c
parent af2c6420c428061332fce9dba235dd6d800a8619
Author: Andreas Gruhler <agruhl@gmx.ch>
Date:   Tue, 10 Mar 2026 00:22:36 +0100

fix(Jenkinsfile): add missing def

Diffstat:
MJenkinsfile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Jenkinsfile b/Jenkinsfile @@ -4,7 +4,7 @@ def buildahbud = new BuildahBud(this) def buildahpush = new BuildahPush(this) node('podman'){ - scmVars = checkout(scm) + def scmVars = checkout(scm) buildahbud.execute([:], ".", "jekyll-myheats", "${scmVars.GIT_COMMIT}") buildahpush.execute("jekyll-myheats", "${scmVars.GIT_COMMIT}")