diff --git a/Jenkinsfile b/Jenkinsfile new file mode 100644 index 0000000..961ba80 --- /dev/null +++ b/Jenkinsfile @@ -0,0 +1,16 @@ +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" + } + } + } +}