diff --git a/Jenkinsfile b/Jenkinsfile index 9a03a74..e207bb6 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -70,13 +70,17 @@ pipeline { script { bat 'flutter pub get' bat 'call compile.bat' + bat ''' + cd build\\windows\\x64\\runner\\Release + tar -cvf ..\\..\\..\\..\\..\\client-windows.tgz . + ''' } } post { always { archiveArtifacts artifacts: "out\\*.exe", fingerprint: true - archiveArtifacts artifacts: "build\\windows\\x64\\runner\\Release" + archiveArtifacts artifacts: "client-windows.tgz" deleteDir() } }