chore: split pypi and pypi test jobs to enable proper attestation

Related: https://github.com/pypa/gh-action-pypi-publish/issues/283
This commit is contained in:
Matthias
2024-12-02 20:03:39 +01:00
parent 58d3555102
commit 2f4bd6a0c9

View File

@@ -517,14 +517,14 @@ jobs:
ft_client/dist ft_client/dist
retention-days: 10 retention-days: 10
deploy-pypi: deploy-test-pypi:
name: "Deploy to PyPI" name: "Publish Python 🐍 distribution 📦 to TestPyPI"
needs: [ build ] needs: [ build ]
runs-on: ubuntu-22.04 runs-on: ubuntu-22.04
if: (github.event_name == 'release') if: (github.event_name == 'release')
environment: environment:
name: release name: testpypi
url: https://pypi.org/p/freqtrade url: https://test.pypi.org/p/freqtrade
permissions: permissions:
id-token: write id-token: write
@@ -538,12 +538,33 @@ jobs:
path: dist path: dist
merge-multiple: true merge-multiple: true
- name: Publish to PyPI (Test) - name: Publish to PyPI (Test)
uses: pypa/gh-action-pypi-publish@v1.12.2 uses: pypa/gh-action-pypi-publish@v1.12.2
with: with:
repository-url: https://test.pypi.org/legacy/ repository-url: https://test.pypi.org/legacy/
deploy-pypi:
name: "Publish Python 🐍 distribution 📦 to PyPI"
needs: [ build ]
runs-on: ubuntu-22.04
if: (github.event_name == 'release')
environment:
name: pypi
url: https://pypi.org/p/freqtrade
permissions:
id-token: write
steps:
- uses: actions/checkout@v4
- name: Download artifact 📦
uses: actions/download-artifact@v4
with:
pattern: freqtrade*-build
path: dist
merge-multiple: true
- name: Publish to PyPI - name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@v1.12.2 uses: pypa/gh-action-pypi-publish@v1.12.2