Hotfix #5
Gitea Scan/plate-tool/pipeline/head Build queued... Details

This commit is contained in:
Emilia Allison 2024-01-06 15:00:50 -05:00
parent 2971baaee2
commit 2c53c27f5c
1 changed files with 7 additions and 2 deletions

9
Jenkinsfile vendored
View File

@ -8,8 +8,13 @@ pipeline {
. "$HOME/.cargo/env"
trunk build --release --public-url "cool-stuff/plate-tool-beta/"
'''
archiveArtifacts "dist/"
}
}
}
stage('Archive') {
steps {
zip zipFile: "dist.zip", archive: true, dir: "dist/"
archiveArtifacts artifacts: "dist.zip", fingerprint: true
}
}
}
}