build: Index wordt nu ook naar proj web gezet
gitea/double-pendulum/pipeline/head This commit looks good

This commit is contained in:
2026-09-05 18:01:10 +02:00
parent 61dc5cc9c3
commit a8c01e6ad7
Vendored
+9 -8
View File
@@ -7,14 +7,15 @@ pipeline {
} }
} }
stage('Build') { stage('Build') {
steps { steps {
sh 'wasm-pack build --target web --out-dir /var/www/zwietering.eu/projects/double-pendulum' sh 'wasm-pack build --target web --out-dir /var/www/zwietering.eu/projects/double-pendulum'
} sh 'cp ./index.html /var/www/zwietering.eu/projects/double-pendulum'
} }
}
} }
post { post {
cleanup { cleanup {
cleanWs() cleanWs()
} }
}
} }
}