sudovanilla-website/Jenkinsfile
2025-01-15 17:13:59 -05:00

17 lines
416 B
Groovy

pipeline {
agent any
stages {
stage('Build') {
steps {
sh "npm i --registry https://js.registry.sudovanilla.org"
sh "npx astro build"
}
}
stage('Deploy') {
steps {
echo "Deploy"
sh "mv dist/ /stations/mar-s1/docker/volumes/static/sudovanilla-website/"
}
}
}
}