Fix linux server artifact name

This commit is contained in:
zontreck 2024-11-25 00:00:16 -07:00
parent 4bd35a73d0
commit 42b94fcb9a

4
Jenkinsfile vendored
View file

@ -22,7 +22,7 @@ pipeline {
flutter pub get
flutter build linux
dart compile exe -o server bin/server.dart
dart compile exe -o cemmserver bin/server.dart
cd build/linux/x64/release/bundle; tar -cvf ../../../../../client.tgz .
'''
@ -31,7 +31,7 @@ pipeline {
post {
always {
archiveArtifacts artifacts: 'server'
archiveArtifacts artifacts: 'cemmserver'
archiveArtifacts artifacts: '*.tgz'
deleteDir()