File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 66 black :
77 runs-on : ubuntu-latest
88 steps :
9- - uses : actions/checkout@v1
10- - name : Black Code Formatter
11- uses : lgeiger/black-action@v1.0.1
12- with :
13- args : " . --check"
9+ - uses : actions/checkout@v1
10+ - name : Black Code Formatter
11+ uses : lgeiger/black-action@v1.0.1
12+ with :
13+ args : " . --check"
Original file line number Diff line number Diff line change 99
1010jobs :
1111 deploy :
12-
1312 runs-on : ubuntu-latest
14-
1513 steps :
16- - uses : actions/checkout@v2
17- - name : Set up Python
18- uses : actions/setup-python@v2
19- with :
20- python-version : ' 3.x'
21- - name : Install dependencies
22- run : |
23- python -m pip install --upgrade pip
24- pip install setuptools wheel twine
25- - name : Build and publish
26- env :
27- TWINE_USERNAME : ${{ secrets.PMH_PYPI_USER }}
28- TWINE_PASSWORD : ${{ secrets.PMH_PYPI_PASS }}
29- run : |
30- python setup.py sdist bdist_wheel
31- twine upload dist/*
14+ - uses : actions/checkout@v2
15+ - name : Set up Python
16+ uses : actions/setup-python@v2
17+ with :
18+ python-version : " 3.x"
19+ - name : Install dependencies
20+ run : |
21+ python -m pip install --upgrade pip
22+ pip install setuptools wheel twine
23+ - name : Build and publish
24+ env :
25+ TWINE_USERNAME : ${{ secrets.PMH_PYPI_USER }}
26+ TWINE_PASSWORD : ${{ secrets.PMH_PYPI_PASS }}
27+ run : |
28+ python setup.py sdist bdist_wheel
29+ twine upload dist/*
You can’t perform that action at this time.
0 commit comments