File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -209,6 +209,7 @@ extends:
209
209
- pwsh : |
210
210
./build.ps1 -Release -Architecture x86_64-unknown-linux-gnu
211
211
./build.ps1 -PackageType tgz -Architecture x86_64-unknown-linux-gnu -Release
212
+ Copy-Item ./bin/*.tar.gz "$(ob_outputDirectory)"
212
213
displayName: 'Build x86_64-unknown-linux-gnu'
213
214
condition: succeeded()
214
215
@@ -225,6 +226,7 @@ extends:
225
226
- pwsh : |
226
227
./build.ps1 -Release -Architecture aarch64-unknown-linux-gnu
227
228
./build.ps1 -PackageType tgz -Architecture aarch64-unknown-linux-gnu -Release
229
+ Copy-Item ./bin/*.tar.gz "$(ob_outputDirectory)"
228
230
displayName: 'Build aarch64-unknown-linux-gnu'
229
231
condition: succeeded()
230
232
@@ -249,6 +251,7 @@ extends:
249
251
- pwsh : |
250
252
./build.ps1 -Release -Architecture $(buildName)
251
253
./build.ps1 -PackageType tgz -Architecture $(buildName) -Release
254
+ Copy-Item ./bin/*.tar.gz "$(ob_outputDirectory)"
252
255
displayName: 'Build $(buildName)'
253
256
condition: succeeded()
254
257
Original file line number Diff line number Diff line change @@ -531,7 +531,7 @@ if ($packageType -eq 'msixbundle') {
531
531
}
532
532
}
533
533
534
- $packageName = " DSC-$productVersion -$architecture .tgz "
534
+ $packageName = " DSC-$productVersion -$architecture .tar.gz "
535
535
$tgzFile = Join-Path $PSScriptRoot ' bin' $packageName
536
536
tar cvf $tgzFile - C $tgzTarget .
537
537
Write-Host - ForegroundColor Green " `n Tgz file is created at $tgzFile "
You can’t perform that action at this time.
0 commit comments