File tree Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Expand file tree Collapse file tree 1 file changed +9
-4
lines changed Original file line number Diff line number Diff line change 99 runs-on : ubuntu-latest
1010 steps :
1111 - uses : actions/checkout@v1
12- - name : Set up Python
13- uses : actions/setup-python@v1
12+ - uses : goanpeca/setup-miniconda@v1
1413 with :
15- python-version : ' 3.x'
14+ auto-update-conda : true
15+ activate-environment : sagecoin
16+ environment-file : environment.yml
17+ python-version : 3.7
18+ auto-activate-base : false
1619 - name : Install dependencies
20+ shell : bash -l {0}
1721 run : |
1822 python -m pip install --upgrade pip
1923 pip install setuptools twine
2024 - name : Build and publish
2125 env :
2226 TWINE_USERNAME : ${{ secrets.PYPI_USERNAME }}
2327 TWINE_PASSWORD : ${{ secrets.PYPI_PASSWORD }}
28+ shell : bash -l {0}
2429 run : |
25- python setup.py sdist
30+ python3 setup.py sdist
2631 twine upload dist/*
You can’t perform that action at this time.
0 commit comments