Commit c337440

Karn Wong <[email protected]>
2025-12-04 10:20:52
ci: apt update tag: v0.12.0
1 parent cf27316
Changed files (1)
.github
workflows
.github/workflows/release.yaml
@@ -32,8 +32,10 @@ jobs:
       - name: Install cross-compilers
         run: |
           if [ "${{ matrix.os }}" == "linux" ]; then
+            sudo apt update
             sudo apt-get install gcc-aarch64-linux-gnu gcc-arm-linux-gnueabihf
           elif [ "${{ matrix.os }}" == "windows" ]; then
+            sudo apt update
             sudo apt-get install gcc-mingw-w64-x86-64
           fi
       # --------- setup rust ---------