File tree Expand file tree Collapse file tree 1 file changed +29
-0
lines changed
Expand file tree Collapse file tree 1 file changed +29
-0
lines changed Original file line number Diff line number Diff line change 8989 with state.State(quiet=False) as p_state:
9090 pass
9191 EOF
92+
93+ deploy-testpypi :
94+ name : Deploy to TestPyPI
95+ needs : ['build_wheels', 'install_wheels']
96+ environment : ' publish-testpypi'
97+ runs-on : ubuntu-latest
98+ permissions :
99+ id-token : write
100+
101+ steps :
102+ - uses : actions/download-artifact@v4
103+ with :
104+ name : cibw-wheels-ubuntu-latest
105+ path : dist
106+
107+ - uses : actions/download-artifact@v4
108+ with :
109+ name : cibw-wheels-macos-latest
110+ path : dist
111+
112+ - uses : actions/download-artifact@v4
113+ with :
114+ name : cibw-wheels-windows-latest
115+ path : dist
116+
117+ - name : Publish package distributions to PyPI
118+ uses : pypa/gh-action-pypi-publish@release/v1
119+ with :
120+ repository-url : https://test.pypi.org/legacy/
You can’t perform that action at this time.
0 commit comments