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

Esse commit está contido em:
AJ ONeal 2023-11-05 00:27:07 -06:00
commit 81b2207b81
Assinado por: coolaj86
ID da chave GPG: F1D692A76F70CF98
1 arquivos alterados com 1 adições e 1 exclusões

Ver arquivo

@ -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"