ccpp_mac.yml 574 B

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