plate-tool/Jenkinsfile

17 lines
361 B
Plaintext
Raw Normal View History

pipeline {
agent "linux_arm"
stages {
stage('Build') {
steps {
scm checkout
sh '''
. "$HOME/.cargo/env"
trunk build --release --public-url "cool-stuff/plate-tool-beta/"
'''
archiveArtifacts "**/dist"
}
}
}
}