File tree Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Expand file tree Collapse file tree 2 files changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -13,29 +13,22 @@ jobs:
1313 uses : actions/setup-python@v1
1414 with :
1515 python-version : ' 3.x'
16- - name : Install build dependencies
16+ - name : Install dependencies
1717 run : |
1818 python -m pip install --upgrade pip
1919 pip install setuptools wheel twine
20- - name : Build
21- run : |
22- python setup.py sdist bdist_wheel
23- - uses : actions/checkout@v2
24- with :
25- ref : master
2620 - name : Update keywords documentation
2721 run : |
28- pip install robotframework
2922 python -m robot.libdoc src/RequestsLibrary doc/RequestsLibrary.html
3023 - name : Commit updated documentation
3124 uses : stefanzweifel/git-auto-commit-action@dd055f6225757c369f948744463f63ac1bd4c277
3225 with :
33- branch : master
3426 commit_message : Update keywords documentation
3527 file_pattern : doc/RequestsLibrary.html
36- - name : Publish to PyPi
28+ - name : Build and publish
3729 env :
3830 TWINE_USERNAME : ${{ secrets.TWINE_USERNAME }}
3931 TWINE_PASSWORD : ${{ secrets.TWINE_PASSWORD }}
4032 run : |
33+ python setup.py sdist bdist_wheel
4134 twine upload dist/*
You can’t perform that action at this time.
0 commit comments