add lab1 (got points)

This commit is contained in:
nik
2025-09-23 17:03:43 +03:00
parent 2fc2e418f2
commit 37f9f5ffbe

20
Jenkinsfile vendored
View File

@@ -17,16 +17,16 @@ pipeline {
}
}
stage('Setup Hugo') {
steps {
sh '''
mkdir -p tools
cd tools
curl -L -o hugo.tar.gz https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
tar -xzf hugo.tar.gz
chmod +x hugo
'''
}
}
steps {
sh '''
mkdir -p tools
cd tools
curl -L -o hugo.tar.gz https://github.com/gohugoio/hugo/releases/download/v${HUGO_VERSION}/hugo_extended_${HUGO_VERSION}_Linux-64bit.tar.gz
tar -xzf hugo.tar.gz
chmod +x hugo
'''
}
}
stage('Build site') {
steps {