Deal with issue caused by Max SDK assumption #4
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Max External | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - develop | |
| - "release/*" | |
| tags: | |
| - "*.*.*" | |
| pull_request: | |
| branches: | |
| - master | |
| - develop | |
| - "release/*" | |
| workflow_dispatch: | |
| jobs: | |
| build-external: | |
| name: Build Max External | |
| runs-on: macos-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Build Max External | |
| run: | | |
| cd plugins/max-External | |
| chmod +x ./build-max-external.sh | |
| ./build-max-external.sh |