File tree Expand file tree Collapse file tree 1 file changed +21
-21
lines changed Expand file tree Collapse file tree 1 file changed +21
-21
lines changed Original file line number Diff line number Diff line change @@ -37,24 +37,24 @@ jobs:
3737 run : |
3838 pytest -m "not e2e" --verbose
3939 publish :
40- needs : build
41- if : startswith(github.ref, 'refs/tags/v')
42- runs-on : ubuntu-latest
43- env :
44- TWINE_USERNAME : " __token__"
45- steps :
46- - uses : actions/checkout@v4
47- - name : Set up Python 3.11
48- uses : actions/setup-python@v5
49- with :
50- python-version : 3.11
51- - name : Install dependencies
52- run : |
53- python -m pip install --upgrade pip
54- pip install setuptools wheel twine
55- - name : Build and publish Dapr Python SDK
56- env :
57- TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
58- run : |
59- python -m build
60- twine upload dist/*
40+ needs : build
41+ if : startswith(github.ref, 'refs/tags/v')
42+ runs-on : ubuntu-latest
43+ env :
44+ TWINE_USERNAME : " __token__"
45+ steps :
46+ - uses : actions/checkout@v4
47+ - name : Set up Python 3.11
48+ uses : actions/setup-python@v5
49+ with :
50+ python-version : 3.11
51+ - name : Install dependencies
52+ run : |
53+ python -m pip install --upgrade pip
54+ pip install setuptools wheel twine build
55+ - name : Build and publish Dapr Python SDK
56+ env :
57+ TWINE_PASSWORD : ${{ secrets.PYPI_UPLOAD_PASS }}
58+ run : |
59+ python -m build
60+ twine upload dist/*
You can’t perform that action at this time.
0 commit comments