plate-tool/Jenkinsfile

21 lines
436 B
Plaintext
Raw Normal View History

pipeline {
2024-01-06 19:50:22 +00:00
agent any
stages {
stage('Build') {
steps {
sh '''
. "$HOME/.cargo/env"
trunk build --release --public-url "cool-stuff/plate-tool-beta/"
'''
}
2024-01-06 20:00:50 +00:00
}
stage('Archive') {
steps {
zip zipFile: "dist.zip", archive: true, dir: "dist/"
archiveArtifacts artifacts: "dist.zip", fingerprint: true
}
}
}
}