diff --git a/.github/workflows/_pypi.yml b/.github/workflows/_pypi.yml deleted file mode 100644 index 0c5258d..0000000 --- a/.github/workflows/_pypi.yml +++ /dev/null @@ -1,17 +0,0 @@ -on: - workflow_call: - -jobs: - upload: - runs-on: ubuntu-latest - environment: release - - steps: - - name: Download dist artifact - uses: actions/download-artifact@v4 - with: - name: dist - path: dist - - - name: Publish to PyPI using trusted publishing - uses: pypa/gh-action-pypi-publish@release/v1 diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3d169b..93a577b 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -44,13 +44,6 @@ jobs: if: needs.check.outputs.branch-pr == '' uses: ./.github/workflows/_dist.yml - pypi: - if: github.ref_type == 'tag' - needs: dist - uses: ./.github/workflows/_pypi.yml - permissions: - id-token: write - release: if: github.ref_type == 'tag' needs: [dist, docs]