build.yml 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  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: [windows-2019, 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 -i favicon.ico --name set_github_secret --hidden-import=_cffi_backend main.py
  38. # python -m PyInstaller main.spec
  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 -rf dist/ oss://yoqi-software/develop/set_github_secret/${{ 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: 'set_github_secret build success'
  55. text: 'please download from aliyun oss. [git.yoqi.me]'
  56. msg_url: '${{ steps.get_version.outputs.url }}'