plate-tool/Jenkinsfile

17 lines
353 B
Plaintext
Raw Normal View History

pipeline {
2024-01-06 19:50:22 +00:00
agent any
stages {
stage('Build') {
steps {
scm checkout
sh '''
. "$HOME/.cargo/env"
trunk build --release --public-url "cool-stuff/plate-tool-beta/"
'''
archiveArtifacts "**/dist"
}
}
}
}