8383 runs-on : ubuntu-latest
8484 env :
8585 TWINE_USERNAME : " __token__"
86- TWINE_REPOSITORY_URL : " https://test.pypi.org/legacy/"
8786 steps :
8887 - uses : actions/checkout@v6
8988 - name : Set up Python 3.10
@@ -99,46 +98,46 @@ jobs:
9998 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
10099 run : |
101100 python -m build --wheel
102- twine upload --verbose dist/*
101+ twine upload dist/*
103102 - name : Build and publish dapr-ext-workflow
104103 env :
105104 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
106105 run : |
107106 cd ext/dapr-ext-workflow
108107 python -m build --wheel
109- twine upload --verbose dist/*
108+ twine upload dist/*
110109 - name : Build and publish Dapr Flask Extension
111110 env :
112111 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
113112 run : |
114113 cd ext/flask_dapr
115114 python -m build --wheel
116- twine upload --verbose dist/*
115+ twine upload dist/*
117116 - name : Build and publish dapr-ext-grpc
118117 env :
119118 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
120119 run : |
121120 cd ext/dapr-ext-grpc
122121 python -m build --wheel
123- twine upload --verbose dist/*
122+ twine upload dist/*
124123 - name : Build and publish dapr-ext-fastapi
125124 env :
126125 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
127126 run : |
128127 cd ext/dapr-ext-fastapi
129128 python -m build --wheel
130- twine upload --verbose dist/*
129+ twine upload dist/*
131130 - name : Build and publish dapr-ext-langgraph
132131 env :
133132 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
134133 run : |
135134 cd ext/dapr-ext-langgraph
136135 python -m build --wheel
137- twine upload --verbose dist/*
136+ twine upload dist/*
138137 - name : Build and publish dapr-ext-strands
139138 env :
140139 TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
141140 run : |
142141 cd ext/dapr-ext-strands
143142 python -m build --wheel
144- twine upload --verbose dist/*
143+ twine upload dist/*
0 commit comments