Skip to content

Commit e5f170d

Browse files
authored
Update python-publish.yml
1 parent cbabd2d commit e5f170d

File tree

1 file changed

+22
-0
lines changed

1 file changed

+22
-0
lines changed

.github/workflows/python-publish.yml

+22
Original file line numberDiff line numberDiff line change
@@ -73,3 +73,25 @@ jobs:
7373
uses: pypa/gh-action-pypi-publish@release/v1
7474
with:
7575
repository-url: https://test.pypi.org/legacy/
76+
77+
publish-to-prodpypi:
78+
name: publish python distribution to ProdPyPi
79+
needs:
80+
- build
81+
runs-on: ubuntu-latest
82+
83+
environment:
84+
name: prodpypi
85+
url: https://pypi.org/p/dataforge-core
86+
87+
permissions:
88+
id-token: write # IMPORTANT: mandatory for trusted publishing
89+
90+
steps:
91+
- name: Download all the dists
92+
uses: actions/download-artifact@v4
93+
with:
94+
name: python-package-distributions
95+
path: dist/
96+
- name: publish dist to ProdPyPI
97+
uses: pypa/gh-action-pypi-publish@release/v1

0 commit comments

Comments
 (0)