Merge pull request #176 from svc-design/codex/fix-syntax-errors-in-workflow-file

Fix workflow matrix condition syntax
This commit is contained in:
shenlan 2025-11-21 15:51:01 +08:00 committed by GitHub
commit 9178f9a2c8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -76,7 +76,7 @@ jobs:
ubuntu_version: "2204"
cpu_arch: arm64
if: >
if: ${{
github.event_name == 'schedule' ||
(
github.event_name == 'workflow_dispatch' &&
@ -84,6 +84,7 @@ jobs:
github.event.inputs.ubuntu_version == matrix.ubuntu_version &&
github.event.inputs.cpu_arch == matrix.cpu_arch
)
}}
steps:
- uses: actions/checkout@v4