17 lines
416 B
Groovy
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/"
|
|
}
|
|
}
|
|
}
|
|
}
|