Linux PyQt tray application to control OctoPrint instances
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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