Linux PyQt tray application to control OctoPrint instances
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

buildmac.yml 564B

12345678910111213141516171819202122232425
  1. name: Build Mac
  2. on: [push]
  3. jobs:
  4. build:
  5. runs-on: macos-latest
  6. steps:
  7. - uses: actions/checkout@v2
  8. - uses: actions/setup-python@v2
  9. with:
  10. python-version: 3.9
  11. - name: Install dependencies
  12. run: |
  13. python -m pip install --upgrade pip
  14. pip install PyQt5
  15. pip install py2exe
  16. - name: Run Mac build
  17. run: |
  18. cd ${{ github.workspace }}
  19. ./build_mac.sh
  20. - name: Show build results
  21. run: |
  22. ls ${{ github.workspace }}/build/mac
  23. ls ${{ github.workspace }}/build/dist