ccpp_mac.yml 558 B

12345678910111213141516171819202122232425262728
  1. name: C/C++ Nigthly macos
  2. on:
  3. push:
  4. branches:
  5. - Nigthly
  6. jobs:
  7. build:
  8. runs-on: macos-10.15
  9. steps:
  10. - uses: actions/checkout@v2
  11. with:
  12. ref: 'Nigthly'
  13. - name: build deps & slicer
  14. run: ./BuildMacOS.sh -i
  15. - name: Upload artifact
  16. uses: actions/upload-artifact@v1.0.0
  17. with:
  18. name: nightly_macos.tar
  19. path: build/SuperSlicer.tar
  20. - name: Upload artifact
  21. uses: actions/upload-artifact@v1.0.0
  22. with:
  23. name: nightly_macos.dmg
  24. path: build/SuperSlicer.dmg