From 3ff8df6cb97991af12cbbfb5c389635175b90d04 Mon Sep 17 00:00:00 2001 From: Steven Maude Date: Mon, 13 Apr 2026 14:36:21 +0100 Subject: [PATCH] Remove publication step for now. We're not using it. --- .github/workflows/ci-build.yml | 27 --------------------------- 1 file changed, 27 deletions(-) diff --git a/.github/workflows/ci-build.yml b/.github/workflows/ci-build.yml index b7ce5bb..524d357 100644 --- a/.github/workflows/ci-build.yml +++ b/.github/workflows/ci-build.yml @@ -49,30 +49,3 @@ jobs: with: name: python-package-distributions path: dist/ - - publish: - name: Publish to PyPI - needs: build - runs-on: ubuntu-latest - - if: startsWith(github.ref, 'refs/tags/') - - permissions: - id-token: write - contents: read - - environment: - name: release - url: https://pypi.org/p/python-pdftables-api - - steps: - - name: Download artifacts - uses: actions/download-artifact@v8 - with: - name: python-package-distributions - path: dist/ - - - name: Publish distribution to PyPI - uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # v1.13.0 - with: - verbose: true