fix(build): add missing .gz to windows tar
This commit is contained in:
parent
759dc46f11
commit
81b2207b81
|
@ -17,7 +17,7 @@ function fn_package() {
|
||||||
tinygo build -no-debug -o "${my_bin}"
|
tinygo build -no-debug -o "${my_bin}"
|
||||||
#strip "${my_bin}" || true
|
#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"
|
Compress-Archive "$my_bin" "$my_bin.zip"
|
||||||
|
|
||||||
Write-Output "$my_bin.zip"
|
Write-Output "$my_bin.zip"
|
||||||
|
|
Loading…
Reference in New Issue