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