autoci.yml 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. name: auto CI
  2. on:
  3. push:
  4. branches: [ master ]
  5. pull_request:
  6. branches: [ master ]
  7. schedule:
  8. - cron: "0 2 * * 1-5"
  9. jobs:
  10. build:
  11. strategy:
  12. matrix:
  13. os: [ubuntu-latest, macos-latest, windows-latest]
  14. include:
  15. - os: ubuntu-latest
  16. path: ~/.cache/pip
  17. - os: macos-latest
  18. path: ~/Library/Caches/pip
  19. - os: windows-latest
  20. path: ~\AppData\Local\pip\Cache
  21. runs-on: ubuntu-latest
  22. steps:
  23. - uses: actions/checkout@v2
  24. - name: Set up Python 3.8
  25. id: setup-python
  26. uses: actions/setup-python@v4
  27. with:
  28. python-version: 3.8
  29. - uses: actions/cache@v2
  30. with:
  31. path: ${{ matrix.path }}
  32. key: ${{ runner.os }}-pip-${{ hashFiles('**/requirements.txt') }}
  33. restore-keys: |
  34. ${{ runner.os }}-pip-
  35. - uses: actions/cache@v2
  36. with:
  37. path: ~/.local/share/virtualenvs
  38. key: ${{ runner.os }}-python-${{ steps.setup-python.outputs.python-version }}-pipenv-${{ hashFiles('Pipfile.lock') }}
  39. - name: Install dependencies
  40. run: |
  41. python -m pip install --upgrade pip
  42. if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
  43. - name: Update Deny Host
  44. run: |
  45. pwd
  46. python cmd/refresh.py
  47. - name: Push to built branch
  48. uses: Automattic/action-commit-to-branch@master
  49. with:
  50. branch: 'master'
  51. commit_message: 'Update Host'
  52. env:
  53. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
  54. - name: Publish distribution 📦 to Test PyPI
  55. uses: pypa/gh-action-pypi-publish@master
  56. with:
  57. user: __token__
  58. password: ${{ secrets.test_pypi_password }}
  59. repository_url: https://test.pypi.org/legacy/
  60. - name: Publish distribution 📦 to PyPI
  61. if: startsWith(github.event.ref, 'refs/tags')
  62. uses: pypa/gh-action-pypi-publish@master
  63. with:
  64. user: __token__
  65. password: ${{ secrets.pypi_password }}