Skip to content

Commit b2046a9

Browse files
committed
Test setup with TestPyPI
Signed-off-by: Sergio Herrera <627709+seherv@users.noreply.github.com>
1 parent efbd542 commit b2046a9

2 files changed

Lines changed: 9 additions & 8 deletions

File tree

.github/workflows/build-tag.yaml

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ jobs:
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/*

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
1.18.0.dev
1+
1.18.0rc99

0 commit comments

Comments
 (0)