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

buildwindows.yml 574B

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