From 4961a24a332ef3ecdb672f4427d022d0e7036492 Mon Sep 17 00:00:00 2001 From: scaramallion Date: Sat, 6 Jan 2024 14:22:17 +1100 Subject: [PATCH] Finalise --- .github/workflows/release-wheels.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) 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