File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree 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+ if : github.ref == 'refs/heads/develop'
96+ needs : ['build_wheels', 'install_wheels']
97+ environment : ' publish-testpypi'
98+ runs-on : ubuntu-latest
99+ permissions :
100+ id-token : write
101+
102+ steps :
103+ - uses : actions/download-artifact@v4
104+ with :
105+ name : cibw-wheels-ubuntu-latest
106+ path : dist
107+
108+ - uses : actions/download-artifact@v4
109+ with :
110+ name : cibw-wheels-macos-latest
111+ path : dist
112+
113+ - uses : actions/download-artifact@v4
114+ with :
115+ name : cibw-wheels-windows-latest
116+ path : dist
117+
118+ - name : Publish package distributions to PyPI
119+ uses : pypa/gh-action-pypi-publish@release/v1
120+ with :
121+ repository-url : https://test.pypi.org/legacy/
You can’t perform that action at this time.
0 commit comments