plate-tool/Jenkinsfile

16 lines
322 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 19:56:43 +00:00
archiveArtifacts "dist/"
}
}
}
}