File tree Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Expand file tree Collapse file tree 1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 3333 pip install --upgrade pip
3434 pip install build twine hatch
3535
36- - name : upgrade version with hatch
37- run : hatch version ${{ env.VERSION }}
38-
3936 - name : configure git with the bot credentials
4037 run : |
4138 mkdir -p ~/.ssh
@@ -78,17 +75,19 @@ jobs:
7875 env :
7976 TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
8077 TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
81- run : |
82- python -m build
78+ run : python -m build
79+ working-directory : ./nextmv-py
8380
8481 - name : publish to TestPyPI
8582 env :
8683 TWINE_USERNAME : ${{ secrets.TESTPYPI_USERNAME }}
8784 TWINE_PASSWORD : ${{ secrets.TESTPYPI_PASSWORD }}
8885 run : twine upload --repository testpypi dist/*
86+ working-directory : ./nextmv-py
8987
9088 - name : publish to PyPI
9189 env :
9290 TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
9391 TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
9492 run : twine upload dist/*
93+ working-directory : ./nextmv-py
You can’t perform that action at this time.
0 commit comments