From 9e53030bd9e5c3ed517a7c0711d1b771ff74369b Mon Sep 17 00:00:00 2001 From: Nat Morris Date: Mon, 4 Nov 2024 19:51:42 +0000 Subject: [PATCH] chore: Delete .github/workflows/pub-pypi.yml --- .github/workflows/pub-pypi.yml | 36 ---------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 .github/workflows/pub-pypi.yml diff --git a/.github/workflows/pub-pypi.yml b/.github/workflows/pub-pypi.yml deleted file mode 100644 index c016a37..0000000 --- a/.github/workflows/pub-pypi.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: Publish Python 🐍 distributions 📦 to PyPI and TestPyPI - -on: - release: - types: [published] - -jobs: - build-n-publish: - name: Build and publish Python 🐍 distributions 📦 to PyPI and TestPyPI - runs-on: ubuntu-latest - environment: release - permissions: - id-token: write - contents: read - steps: - - uses: actions/checkout@main - - name: Set up Python 3.7 - uses: actions/setup-python@v1 - with: - python-version: 3.7 - - name: Install pypa/build - run: >- - python -m - pip install - build - --user - - name: Build a binary wheel and a source tarball - run: >- - python -m - build - --sdist - --wheel - --outdir dist/ - . - - name: Publish distribution 📦 to PyPI - uses: pypa/gh-action-pypi-publish@release/v1