| name: Publish | |
| on: [push] | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| max-parallel: 4 | |
| matrix: | |
| # python-version: [3.5, 3.6, 3.7] | |
| python-version: [3.7] | |
| steps: | |
| - uses: actions/checkout@v1 | |
| - name: Set up Python ${{ matrix.python-version }} | |
| uses: actions/setup-python@v1 | |
| with: | |
| python-version: ${{ matrix.python-version }} | |
| - name: Install dependencies | |
| run: | | |
| python -m pip install --upgrade pip | |
| pip install -r requirements.txt | |
| pip install twine setuptools wheel --upgrade | |
| - name: Push to PyPi | |
| env: | |
| TWINE_USERNAME: ${{ secrets.TWINE_USERNAME }} | |
| TWINE_PASSWORD: ${{ secrets.TWINE_PASSWORD }} | |
| run: | | |
| if pip search thop | grep -o "\((.*)\)" | xargs python .github/workflows/date_extraction.py -m ; then | |
| echo "There has been more than one week since last update, start to build." | |
| python setup.py bdist_wheel | |
| twine check dist/* | |
| twine upload dist/* | |
| else | |
| echo "Latest update within one week, skip the build" | |
| fi |