diff --git a/.github/workflows/python-release.yml b/.github/workflows/python-release.yml index 76cc3fa..280e708 100644 --- a/.github/workflows/python-release.yml +++ b/.github/workflows/python-release.yml @@ -17,8 +17,8 @@ name: Python Release on: push: - tags: - - v1.* + branches: + - debug-github-workflow jobs: linux: @@ -119,10 +119,23 @@ jobs: name: wheels path: dist + storage: + name: Storage info + + runs-on: ubuntu-latest + needs: [linux, windows, macos] + + steps: + - name: df -h + run: df -h + + - name: du -h + run: du -h sdist: name: Source distribution runs-on: ubuntu-latest + needs: [storage] steps: - name: Check out repository @@ -139,24 +152,3 @@ jobs: with: name: wheels path: dist - - release: - name: Publish wheels to PyPI - - runs-on: ubuntu-latest - - needs: [linux, windows, macos, sdist] - - steps: - - name: Download wheels from previous jobs - uses: actions/download-artifact@v3 - with: - name: wheels - - - name: Upload to PyPI - uses: PyO3/maturin-action@v1 - env: - MATURIN_PYPI_TOKEN: ${{ secrets.PYPI_API_TOKEN }} - with: - command: upload - args: --skip-existing *