File tree 1 file changed +4
-5
lines changed
1 file changed +4
-5
lines changed Original file line number Diff line number Diff line change 33
33
pip install --upgrade pip
34
34
pip install build twine hatch
35
35
36
- - name : upgrade version with hatch
37
- run : hatch version ${{ env.VERSION }}
38
-
39
36
- name : configure git with the bot credentials
40
37
run : |
41
38
mkdir -p ~/.ssh
@@ -78,17 +75,19 @@ jobs:
78
75
env :
79
76
TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
80
77
TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
81
- run : |
82
- python -m build
78
+ run : python -m build
79
+ working-directory : ./nextmv-py
83
80
84
81
- name : publish to TestPyPI
85
82
env :
86
83
TWINE_USERNAME : ${{ secrets.TESTPYPI_USERNAME }}
87
84
TWINE_PASSWORD : ${{ secrets.TESTPYPI_PASSWORD }}
88
85
run : twine upload --repository testpypi dist/*
86
+ working-directory : ./nextmv-py
89
87
90
88
- name : publish to PyPI
91
89
env :
92
90
TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
93
91
TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
94
92
run : twine upload dist/*
93
+ working-directory : ./nextmv-py
You can’t perform that action at this time.
0 commit comments