summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBob Burger <bburger@indigobio.com>2024-02-06 14:24:33 -0500
committerBob Burger <bburger@indigobio.com>2024-02-06 14:24:33 -0500
commitee20bd2278cc475019297003162208df6634d323 (patch)
tree487e8b076dfbd486efb6d519b768a2bedfeef27c
parent253230f7dfbb4fe777277d6bbf93f39f9567f086 (diff)
update build.sh to download iconv.dll for ARM64 Windows targets
-rwxr-xr-x.github/workflows/build.sh7
1 files changed, 5 insertions, 2 deletions
diff --git a/.github/workflows/build.sh b/.github/workflows/build.sh
index 64c1268d..7981aae7 100755
--- a/.github/workflows/build.sh
+++ b/.github/workflows/build.sh
@@ -13,9 +13,12 @@ else
fi
case "$TARGET_MACHINE" in
*a6nt)
- curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.9/iconv-x64.dll > "$TARGET_MACHINE"/bin/"$TARGET_MACHINE"/iconv.dll
+ curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.10/iconv-x64.dll > "$TARGET_MACHINE"/bin/"$TARGET_MACHINE"/iconv.dll
;;
*i3nt)
- curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.9/iconv-x86.dll > "$TARGET_MACHINE"/bin/"$TARGET_MACHINE"/iconv.dll
+ curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.10/iconv-x86.dll > "$TARGET_MACHINE"/bin/"$TARGET_MACHINE"/iconv.dll
+ ;;
+ *arm64nt)
+ curl -Ls https://github.com/burgerrg/win-iconv/releases/download/v0.0.10/iconv-arm64.dll > "$TARGET_MACHINE"/bin/"$TARGET_MACHINE"/iconv.dll
;;
esac