From 570c9762cc6da2718b420fb0c0f2a83790376e2b Mon Sep 17 00:00:00 2001 From: Caroline Malin-Mayor Date: Tue, 14 May 2024 15:12:33 +0200 Subject: [PATCH] Revert "Add pypi workflow" This reverts commit e4805863892cc4fef52624c15844523b4efcd64b. --- .github/workflows/deploy.yaml | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 .github/workflows/deploy.yaml diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml deleted file mode 100644 index 8d3df16..0000000 --- a/.github/workflows/deploy.yaml +++ /dev/null @@ -1,29 +0,0 @@ -name: Deploy - -on: - push: - tags: ["*"] - workflow_dispatch: - -jobs: - build-n-publish: - name: Build and publish Python 🐍 distributions 📦 to PyPI - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v4 - - uses: actions/setup-python@v5 - with: - python-version: "3.x" - - name: Build a binary wheel and a source tarball - run: | - python -m pip install -U pip - python -m pip install build - python -m build --sdist --wheel --outdir dist/ - - name: Publish to PyPI - if: startsWith(github.ref, 'refs/tags') - uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{ secrets.PYPI_API_TOKEN }} - - uses: softprops/action-gh-release@v2 - with: - generate_release_notes: true