From 91887877623a6cdc87fd78ec5890b76c7fb063d7 Mon Sep 17 00:00:00 2001 From: Raghav Kansal Date: Mon, 30 Oct 2023 18:33:27 -0500 Subject: [PATCH] Delete .github/workflows/test-pypi-publish.yml --- .github/workflows/test-pypi-publish.yml | 39 ------------------------- 1 file changed, 39 deletions(-) delete mode 100644 .github/workflows/test-pypi-publish.yml diff --git a/.github/workflows/test-pypi-publish.yml b/.github/workflows/test-pypi-publish.yml deleted file mode 100644 index 9854c3a..0000000 --- a/.github/workflows/test-pypi-publish.yml +++ /dev/null @@ -1,39 +0,0 @@ -# This workflow will upload a Python Package using Twine when a release is created -# For more information see: https://help.github.com/en/actions/language-and-framework-guides/using-python-with-github-actions#publishing-to-package-registries - -# This workflow uses actions that are not certified by GitHub. -# They are provided by a third-party and are governed by -# separate terms of service, privacy policy, and support -# documentation. - -name: Upload package to Test PyPI on push - -on: push - -jobs: - deploy: - if: github.repository_owner == 'jet-net' - - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Set up Python - uses: actions/setup-python@v2 - with: - python-version: "3.x" - - - name: Install dependencies - run: | - python -m pip install --upgrade pip - pip install build - - - name: Build package - run: python -m build - - - name: Publish package - uses: pypa/gh-action-pypi-publish@release/v1 - with: - password: ${{ secrets.TEST_PYPI_API_TOKEN }} - repository_url: https://test.pypi.org/legacy/