diff --git a/.github/workflows/build-nightly-release.yml b/.github/workflows/build-nightly-release.yml index 1d4b77a8fa3d..16c90d58bd29 100644 --- a/.github/workflows/build-nightly-release.yml +++ b/.github/workflows/build-nightly-release.yml @@ -28,11 +28,8 @@ jobs: rustup override set stable rustup target add --toolchain stable ${{ matrix.target }} - - name: Setup Zig - uses: goto-bus-stop/setup-zig@v2 - - - name: Install cargo-zigbuild - run: cargo install cargo-zigbuild + - name: Install cross + run: cargo install cross - name: Build ${{ matrix.target }} timeout-minutes: 120 @@ -51,7 +48,7 @@ jobs: fi cd build - ./build-release-zigbuild -t ${{ matrix.target }} $compile_features $compile_compress + ./build-release -t ${{ matrix.target }} $compile_features $compile_compress - name: Upload Artifacts uses: actions/upload-artifact@v3