fix: Add command to build templ files

This commit is contained in:
Araozu 2024-10-08 19:35:50 -05:00
parent 50bd94dfc0
commit e75a7c095a

2
Jenkinsfile vendored
View File

@ -9,6 +9,8 @@ pipeline {
} }
} }
steps { steps {
sh 'go install github.com/a-h/templ/cmd/templ@latest'
sh 'templ generate'
sh 'go mod tidy' sh 'go mod tidy'
sh 'go build main.go' sh 'go build main.go'
} }