From 9ebae5e076e131173d42c37e11a912695d014212 Mon Sep 17 00:00:00 2001 From: Graham Knapp <32717635+dancergraham@users.noreply.github.com> Date: Mon, 10 Aug 2026 16:38:40 +0200 Subject: [PATCH] Delete .github/workflows/publish_pypi.yml This workflow is superceded by a workflow in the private repo explosion/wheelmonger --- .github/workflows/publish_pypi.yml | 31 ------------------------------ 1 file changed, 31 deletions(-) delete mode 100644 .github/workflows/publish_pypi.yml diff --git a/.github/workflows/publish_pypi.yml b/.github/workflows/publish_pypi.yml deleted file mode 100644 index ac5425527f..0000000000 --- a/.github/workflows/publish_pypi.yml +++ /dev/null @@ -1,31 +0,0 @@ -# The cibuildwheel action triggers on creation of a release, this -# triggers on publication. -# The expected workflow is to create a draft release and let the wheels -# upload, and then hit 'publish', which uploads to PyPi. - -on: - release: - types: - - published - -permissions: {} - -jobs: - upload_pypi: - runs-on: ubuntu-latest - environment: - name: pypi - url: https://pypi.org/p/spacy - permissions: - id-token: write - contents: read - if: github.event_name == 'release' && github.event.action == 'published' - # or, alternatively, upload to PyPI on every tag starting with 'v' (remove on: release above to use this) - # if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') - steps: - - uses: robinraju/release-downloader@daf26c55d821e836577a15f77d86ddc078948b05 # v1 - with: - tag: ${{ github.event.release.tag_name }} - fileName: '*' - out-file-path: 'dist' - - uses: pypa/gh-action-pypi-publish@ed0c53931b1dc9bd32cbe73a98c7f6766f8a527e # release/v1