From 414d7d4c4625ee5cd2cf40b9cef4dcfe272b345c Mon Sep 17 00:00:00 2001 From: Jacob Babich Date: Sat, 7 Oct 2023 13:32:13 -0400 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=80=20meta:=20remove=20undesirable=20t?= =?UTF-8?q?hings=20from=20GitHub=20Actions?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/CI.yml | 72 ---------------------------------------- 1 file changed, 72 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index f5796a5..ad9ba10 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -36,56 +36,6 @@ jobs: args: --release --out dist --find-interpreter sccache: 'true' manylinux: auto - - name: Upload wheels - uses: actions/upload-artifact@v3 - with: - name: wheels - path: dist - - windows: - runs-on: windows-latest - strategy: - matrix: - target: [x64, x86] - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - with: - python-version: '3.10' - architecture: ${{ matrix.target }} - - name: Build wheels - uses: PyO3/maturin-action@v1 - with: - target: ${{ matrix.target }} - args: --release --out dist --find-interpreter - sccache: 'true' - - name: Upload wheels - uses: actions/upload-artifact@v3 - with: - name: wheels - path: dist - - macos: - runs-on: macos-latest - strategy: - matrix: - target: [x86_64, aarch64] - steps: - - uses: actions/checkout@v3 - - uses: actions/setup-python@v4 - with: - python-version: '3.10' - - name: Build wheels - uses: PyO3/maturin-action@v1 - with: - target: ${{ matrix.target }} - args: --release --out dist --find-interpreter - sccache: 'true' - - name: Upload wheels - uses: actions/upload-artifact@v3 - with: - name: wheels - path: dist sdist: runs-on: ubuntu-latest @@ -96,25 +46,3 @@ jobs: with: command: sdist args: --out dist - - name: Upload sdist - uses: actions/upload-artifact@v3 - with: - name: wheels - path: dist - - release: - name: Release - runs-on: ubuntu-latest - if: "startsWith(github.ref, 'refs/tags/')" - needs: [linux, windows, macos, sdist] - steps: - - uses: actions/download-artifact@v3 - with: - name: wheels - - name: Publish to PyPI - uses: PyO3/maturin-action@v1 - env: - MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} - with: - command: upload - args: --non-interactive --skip-existing *