完整本地音乐库支持 #673
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| pull-requests: read | |
| jobs: | |
| changes: | |
| name: Detect relevant changes | |
| uses: ./.github/workflows/changes.yml | |
| build: | |
| needs: changes | |
| if: ${{ github.event_name == 'workflow_dispatch' || needs.changes.outputs.build == 'true' }} | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| runner: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| - ubuntu-24.04-arm | |
| uses: ./.github/workflows/build.yml | |
| with: | |
| runner: ${{ matrix.runner }} |