build: Fix archive path
gitea/double-pendulum/pipeline/head There was a failure building this commit

This commit is contained in:
Philippe Zwietering
2026-09-08 16:40:07 +02:00
parent 96e8169707
commit b05af111ad
Vendored
+1 -1
View File
@@ -9,7 +9,7 @@ pipeline {
stage('Build') {
steps {
sh 'wasm-pack build --target web'
archiveArtifacts artifacts: './pkg/'
archiveArtifacts artifacts: 'pkg/'
sh 'cp ./pkg/ /var/www/zwietering.eu/projects/double-pendulum'
}
}