🛰 Init
This commit is contained in:
parent
7724b157e7
commit
4ddcf0ea01
79 changed files with 1954 additions and 1 deletions
17
Jenkinsfile
vendored
Normal file
17
Jenkinsfile
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
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/"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue