main.yml 690 B

1234567891011121314151617181920212223242526272829303132
  1. name: CI
  2. on:
  3. push:
  4. branches:
  5. - master
  6. - develop
  7. - feature/*
  8. - feature-*
  9. - issue/*
  10. - issue-*
  11. pull_request:
  12. branches:
  13. - develop
  14. # macOS environments: https://github.com/actions/virtual-environments/tree/main/images/macos
  15. jobs:
  16. build:
  17. name: CI build
  18. runs-on: macos-12
  19. steps:
  20. - name: checkout
  21. uses: actions/checkout@v2
  22. - name: setup
  23. env:
  24. NotificationEndpointDebug: ${{ secrets.NotificationEndpointDebug }}
  25. NotificationEndpointRelease: ${{ secrets.NotificationEndpointRelease }}
  26. run: exec ./.github/scripts/setup.sh
  27. - name: build
  28. run: exec ./.github/scripts/build.sh