8383 runs-on : ubuntu-latest
8484 env :
8585 TWINE_USERNAME : " __token__"
86+ TWINE_REPOSITORY_URL : " https://test.pypi.org/legacy/"
8687 steps :
8788 - uses : actions/checkout@v6
8889 - name : Set up Python 3.10
@@ -98,46 +99,46 @@ jobs:
9899 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
99100 run : |
100101 python -m build --wheel
101- twine upload dist/*
102+ twine upload --verbose dist/*
102103 - name : Build and publish dapr-ext-workflow
103104 env :
104105 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
105106 run : |
106107 cd ext/dapr-ext-workflow
107108 python -m build --wheel
108- twine upload dist/*
109+ twine upload --verbose dist/*
109110 - name : Build and publish Dapr Flask Extension
110111 env :
111112 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
112113 run : |
113114 cd ext/flask_dapr
114115 python -m build --wheel
115- twine upload dist/*
116+ twine upload --verbose dist/*
116117 - name : Build and publish dapr-ext-grpc
117118 env :
118119 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
119120 run : |
120121 cd ext/dapr-ext-grpc
121122 python -m build --wheel
122- twine upload dist/*
123+ twine upload --verbose dist/*
123124 - name : Build and publish dapr-ext-fastapi
124125 env :
125126 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
126127 run : |
127128 cd ext/dapr-ext-fastapi
128129 python -m build --wheel
129- twine upload dist/*
130+ twine upload --verbose dist/*
130131 - name : Build and publish dapr-ext-langgraph
131132 env :
132133 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
133134 run : |
134135 cd ext/dapr-ext-langgraph
135136 python -m build --wheel
136- twine upload dist/*
137+ twine upload --verbose dist/*
137138 - name : Build and publish dapr-ext-strands
138139 env :
139140 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
140141 run : |
141142 cd ext/dapr-ext-strands
142143 python -m build --wheel
143- twine upload dist/*
144+ twine upload --verbose dist/*
0 commit comments