build.yml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  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. - name: Set Up Python
  24. uses: actions/setup-python@v4
  25. with:
  26. python-version: '3.9'
  27. cache: pip
  28. cache-dependency-path: '**/requirements*.txt'
  29. - name: Install Dependencies
  30. run: |
  31. python -m pip install --upgrade pip wheel setuptools
  32. pip install -r requirements.txt
  33. python -m pip install pyinstaller
  34. - name: Build Package
  35. run: |
  36. python -m PyInstaller -F -c -i favicon.ico --name set_github_secret main.py
  37. - name: Update to ali oss
  38. uses: yizhoumo/setup-ossutil@v1
  39. with:
  40. endpoint: oss-cn-qingdao.aliyuncs.com
  41. access-key-id: ${{ secrets.OSS_KEY_ID }}
  42. access-key-secret: ${{ secrets.OSS_KEY_SECRET }}
  43. - name: cp files to aliyun
  44. run: |
  45. ossutil cp -rf dist/ oss://yoqi-software/develop/set_github_secret/${{ steps.get_version.outputs.date }}-${{ steps.get_version.outputs.hash }}/
  46. - uses: leafney/dingtalk-action@v1
  47. if: always()
  48. env:
  49. DINGTALK_ACCESS_TOKEN: ${{ secrets.DINGTALK_ACCESS_TOKEN }}
  50. with:
  51. msgtype: link
  52. title: 'set_github_secret build success'
  53. text: 'please download from aliyun oss. [git.yoqi.me]'
  54. msg_url: '${{ steps.get_version.outputs.url }}'