From 1f049ceae266ba9894c4f6aea82a84b4337deba3 Mon Sep 17 00:00:00 2001 From: Harsha Nori Date: Thu, 9 May 2024 10:34:26 -0700 Subject: [PATCH] Try shifting rust install step above container in pypi upload workflow --- .github/workflows/pypi_upload.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/pypi_upload.yml b/.github/workflows/pypi_upload.yml index 88084046a..9815535b3 100644 --- a/.github/workflows/pypi_upload.yml +++ b/.github/workflows/pypi_upload.yml @@ -47,18 +47,18 @@ jobs: - name: Check out the repo uses: actions/checkout@v3 - - name: Set up QEMU - if: runner.os == 'Linux' - uses: docker/setup-qemu-action@v2 - with: - platforms: all - - name: Install Rust shell: bash run: | curl https://sh.rustup.rs -sSf | sh -s -- -y --default-toolchain 1.75.0 echo "$HOME/.cargo/bin" >> $GITHUB_PATH + - name: Set up QEMU + if: runner.os == 'Linux' + uses: docker/setup-qemu-action@v2 + with: + platforms: all + - name: Build wheels uses: pypa/cibuildwheel@v2.14.0 with: