diff --git a/.github/workflows/release-wheels.yml b/.github/workflows/release-wheels.yml index 74c8036..87e906d 100644 --- a/.github/workflows/release-wheels.yml +++ b/.github/workflows/release-wheels.yml @@ -3,9 +3,9 @@ name: release-deploy on: release: types: [ published ] - push: - branches: [ main ] - pull_request: + # push: + # branches: [ main ] + # pull_request: jobs: build-sdist: @@ -209,9 +209,9 @@ jobs: python-version: ['3.8', '3.9', '3.10', '3.11', '3.12'] steps: - - uses: actions-rs/toolchain@v1 - with: - toolchain: stable + - name: Install Rust (stable) + run: + curl https://sh.rustup.rs -sSf | sh -s -- -y - name: Set up Python ${{ matrix.python-version }} uses: actions/setup-python@v5