We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cbabd2d commit e5f170dCopy full SHA for e5f170d
.github/workflows/python-publish.yml
@@ -73,3 +73,25 @@ jobs:
73
uses: pypa/gh-action-pypi-publish@release/v1
74
with:
75
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