Added proper file extensions to archived files in pipeline.

This commit is contained in:
Harrison Deng 2022-04-25 03:33:41 -05:00
parent 85d8f2bf6f
commit ab6584065b

4
Jenkinsfile vendored
View File

@ -43,8 +43,8 @@ pipeline {
dotnetPublish configuration: 'Release', project: 'Props', runtime: 'linux-x64', selfContained: true dotnetPublish configuration: 'Release', project: 'Props', runtime: 'linux-x64', selfContained: true
dotnetPublish configuration: 'Release', project: 'Props', runtime: 'win-x64', selfContained: true dotnetPublish configuration: 'Release', project: 'Props', runtime: 'win-x64', selfContained: true
fingerprint 'Props/bin/Release/**/publish/Props*' fingerprint 'Props/bin/Release/**/publish/Props*'
tar file: "props-linux-x64", archive: true, compress: true, glob: "Props/bin/Release/**/linux-x64/publish/**/*" tar file: "props-linux-x64.tar.gz", archive: true, compress: true, glob: "Props/bin/Release/**/linux-x64/publish/**/*", overwrite: true
tar file: "props-win-x64", archive: true, compress: true, glob: "Props/bin/Release/**/win-x64/publish/**/*" zip zipFile: "props-win-x64.zip", archive: true, glob: "Props/bin/Release/**/win-x64/publish/**/*", overwrite: true
} }
} }
} }