build.yml 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  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 repo_sync 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/repo_sync/${{ steps.get_version.outputs.date }}-${{ steps.get_version.outputs.hash }}/