Remove stale macOS asset catalog reference #31
Workflow file for this run
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: Dispatch macOS Release | |
| on: | |
| push: | |
| tags: | |
| - "release/v*.*.*" | |
| permissions: | |
| contents: read | |
| jobs: | |
| dispatch: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Dispatch macOS release build | |
| env: | |
| DEPLOYMENT_DISPATCH_TOKEN: ${{ secrets.DEPLOYMENT_DISPATCH_TOKEN }} | |
| DEPLOYMENT_REPOSITORY_OWNER: ${{ secrets.DEPLOYMENT_REPOSITORY_OWNER }} | |
| DEPLOYMENT_REPOSITORY_NAME: ${{ secrets.DEPLOYMENT_REPOSITORY_NAME }} | |
| run: ./scripts/release/macos/dispatch_deployment.sh |