From e75a7c095a96106eb2374057fc9169f0662c8073 Mon Sep 17 00:00:00 2001 From: Araozu Date: Tue, 8 Oct 2024 19:35:50 -0500 Subject: [PATCH] fix: Add command to build templ files --- Jenkinsfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Jenkinsfile b/Jenkinsfile index 1258b14..009584a 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -9,6 +9,8 @@ pipeline { } } steps { + sh 'go install github.com/a-h/templ/cmd/templ@latest' + sh 'templ generate' sh 'go mod tidy' sh 'go build main.go' }