diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 1ffcec8324..c972e2f1e4 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -74,11 +74,12 @@ jobs: sed -i 's/#import site/import site/' python/python312._pth # Download libiconv (needed for FFmpeg) - wget https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-libiconv-1.17-3-any.pkg.tar.zst + wget https://repo.msys2.org/mingw/mingw64/mingw-w64-x86_64-libiconv-1.18-1-any.pkg.tar.zst + # Extract zst using tar (if system tar supports it) or zstd # We installed p7zip-full, but tar with zstd is cleaner if available. # Let's install zstd in the apt step. - tar -I zstd -xf mingw-w64-x86_64-libiconv-1.17-3-any.pkg.tar.zst -C tools/ + tar -I zstd -xf mingw-w64-x86_64-libiconv-1.18-1-any.pkg.tar.zst -C tools/ # The package extracts to mingw64/, move it to iconv/ mv tools/mingw64 tools/iconv