drone windows compress archive is dumb
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Dan Ballard 2021-06-23 23:16:35 -07:00
parent 5f6008a152
commit 0a93dd40b6
1 changed files with 3 additions and 1 deletions

View File

@ -256,7 +256,9 @@ steps:
- mkdir deploy
- mkdir deploy\$Env:builddir
- powershell -command "move $Env:releasedir\cwtch.msix deploy\$Env:builddir\$Env:msix"
- powershell -command "Compress-Archive -Path $Env:releasedir -DestinationPath deploy\$Env:builddir\$Env:zip"
- move $Env:releasedir $Env:builddir
- powershell -command "Compress-Archive -Path $Env:builddir -DestinationPath $Env:zip"
- powershell -command "move $Env:zip deploy\$Env:builddir\"
- powershell -command "(Get-FileHash deploy\$Env:builddir\$Env:zip -Algorithm sha512).Hash" > deploy\$Env:builddir\$Env:sha
- name: deploy-windows