🛰 Init

This commit is contained in:
Korbs 2025-01-15 17:13:59 -05:00
parent 7724b157e7
commit 4ddcf0ea01
Signed by: Korbs
SSH key fingerprint: SHA256:Q0b0KraMldpAO9oKa+w+gcsXsOTykQ4UkAKn0ByGn5U
79 changed files with 1954 additions and 1 deletions

17
Jenkinsfile vendored Normal file
View 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/"
}
}
}
}