build.yml 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. name: Publish Installers
  2. on:
  3. workflow_dispatch: ~
  4. push:
  5. branches: [master]
  6. tags: [v*]
  7. jobs:
  8. build:
  9. name: Build ${{ matrix.os }} Package
  10. runs-on: ${{ matrix.os }}
  11. strategy:
  12. matrix:
  13. os: [ubuntu-20.04]
  14. steps:
  15. - name: Checkout Code
  16. uses: actions/checkout@v4
  17. - name: Set Release Version
  18. id: get_version
  19. shell: bash
  20. run: |
  21. echo "::set-output name=hash::$(git rev-parse --short HEAD)"
  22. echo "::set-output name=date::$(date +%Y%m%d)"
  23. echo "::set-output name=url::$(git remote get-url origin)"
  24. - name: Set Up Python
  25. uses: actions/setup-python@v4
  26. with:
  27. python-version: '3.9'
  28. cache: pip
  29. cache-dependency-path: '**/requirements*.txt'
  30. - name: Install Dependencies
  31. run: |
  32. python -m pip install --upgrade pip wheel setuptools
  33. pip install -r requirements.txt
  34. python -m pip install pyinstaller
  35. - name: Build Package
  36. run: |
  37. python -m PyInstaller -F -c --name fgh client.py
  38. python -m PyInstaller -F -c --name fgh-server main.py
  39. - name: Update to ali oss
  40. uses: yizhoumo/setup-ossutil@v1
  41. with:
  42. endpoint: oss-cn-qingdao.aliyuncs.com
  43. access-key-id: ${{ secrets.OSS_KEY_ID }}
  44. access-key-secret: ${{ secrets.OSS_KEY_SECRET }}
  45. - name: cp files to aliyun
  46. run: |
  47. ossutil cp -r dist/ oss://yoqi-software/develop/fgh/${{ steps.get_version.outputs.date }}-${{ steps.get_version.outputs.hash }}/
  48. - uses: leafney/dingtalk-action@v1
  49. if: always()
  50. env:
  51. DINGTALK_ACCESS_TOKEN: ${{ secrets.DINGTALK_ACCESS_TOKEN }}
  52. with:
  53. msgtype: link
  54. title: 'fgh build success'
  55. text: 'please download from aliyun oss. [git.yoqi.me]'
  56. msg_url: '${{ steps.get_version.outputs.url }}'