From 1b5c6b368e346d5e985be8872db8edcf742cf198 Mon Sep 17 00:00:00 2001 From: Mikkel Wienberg Madsen Date: Fri, 27 Sep 2024 13:20:38 +0200 Subject: [PATCH] Disable sdist in workflow --- .github/workflows/pyo3.yml | 34 +++++++++++++++++++--------------- 1 file changed, 19 insertions(+), 15 deletions(-) diff --git a/.github/workflows/pyo3.yml b/.github/workflows/pyo3.yml index fc5a053..e32f86f 100644 --- a/.github/workflows/pyo3.yml +++ b/.github/workflows/pyo3.yml @@ -139,22 +139,26 @@ jobs: name: wheels-macos-${{ matrix.platform.target }} path: pycare/dist - sdist: - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - name: Build sdist - uses: PyO3/maturin-action@v1 - with: - command: sdist - args: --out dist - working-directory: pycare - - name: Upload sdist - uses: actions/upload-artifact@v4 - with: - name: wheels-sdist - path: pycare/dist + # FIX: broken due to something about the readme being added twice. + # + # sdist: + # runs-on: ubuntu-latest + # steps: + # - uses: actions/checkout@v4 + # - name: Build sdist + # uses: PyO3/maturin-action@v1 + # with: + # command: sdist + # args: --out dist + # working-directory: pycare + # - name: Upload sdist + # uses: actions/upload-artifact@v4 + # with: + # name: wheels-sdist + # path: pycare/dist + # NOTE: Too early to do real releases + # # release: # name: Release # runs-on: ubuntu-latest