chore(about): 修改鸣谢列表,移除与社区版无关的条目 #3443
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: Build (CI) | |
| permissions: | |
| contents: read | |
| on: | |
| push: | |
| branches: [dev] | |
| paths-ignore: &ignored | |
| - '**/.editorconfig' | |
| - '**/.gitignore' | |
| - '**/.gitattributes' | |
| - '**/*.md' | |
| - '**/LICENSE' | |
| - '**/LICENCE' | |
| - 'PCL.Core.Test/**' | |
| - '.github/ISSUE_TEMPLATE/**' | |
| - '.github/FUNDING.yml' | |
| pull_request: | |
| paths-ignore: *ignored | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| strategy: | |
| matrix: | |
| include: | |
| - configuration: CI | |
| architecture: x64 | |
| - configuration: CI | |
| architecture: ARM64 | |
| fail-fast: false | |
| uses: ./.github/workflows/reusable-build.yml | |
| with: | |
| configuration: ${{ matrix.configuration }} | |
| architecture: ${{ matrix.architecture }} | |
| secrets: inherit |