Linux PyQt tray application to control OctoPrint instances
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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