remove publish-to-testpypi workflow

This commit is contained in:
Mose Müller 2023-10-10 12:35:27 +02:00
parent 0f7a8ec63b
commit 0b5dd5393a

View File

@ -86,26 +86,26 @@ jobs:
'${{ github.ref_name }}' dist/** '${{ github.ref_name }}' dist/**
--repo '${{ github.repository }}' --repo '${{ github.repository }}'
publish-to-testpypi: # publish-to-testpypi:
name: Publish Python 🐍 distribution 📦 to TestPyPI # name: Publish Python 🐍 distribution 📦 to TestPyPI
needs: # needs:
- build # - build
runs-on: ubuntu-latest # runs-on: ubuntu-latest
#
environment: # environment:
name: testpypi # name: testpypi
url: https://test.pypi.org/p/pydase # url: https://test.pypi.org/p/pydase
#
permissions: # permissions:
id-token: write # IMPORTANT: mandatory for trusted publishing # id-token: write # IMPORTANT: mandatory for trusted publishing
#
steps: # steps:
- name: Download all the dists # - name: Download all the dists
uses: actions/download-artifact@v3 # uses: actions/download-artifact@v3
with: # with:
name: python-package-distributions # name: python-package-distributions
path: dist/ # path: dist/
- name: Publish distribution 📦 to TestPyPI # - name: Publish distribution 📦 to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1 # uses: pypa/gh-action-pypi-publish@release/v1
with: # with:
repository-url: https://test.pypi.org/legacy/ # repository-url: https://test.pypi.org/legacy/