fix(build): add missing .gz to windows tar

Este commit está contenido en:
AJ ONeal 2023-11-05 00:27:07 -06:00
padre 759dc46f11
commit 81b2207b81
Firmado por: coolaj86
ID de clave GPG: F1D692A76F70CF98
Se han modificado 1 ficheros con 1 adiciones y 1 borrados

Ver fichero

@ -17,7 +17,7 @@ function fn_package() {
tinygo build -no-debug -o "${my_bin}"
#strip "${my_bin}" || true
tar cvzf "$my_bin.tar" "$my_bin"
tar cvzf "$my_bin.tar.gz" "$my_bin"
Compress-Archive "$my_bin" "$my_bin.zip"
Write-Output "$my_bin.zip"