This repository was archived by the owner on May 26, 2026. It is now read-only.
fix: 实例图标分配不正确 #96
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 |