[skip ci] fix ci (#1263)

This commit is contained in:
Ylarod
2024-01-07 12:47:03 +08:00
committed by GitHub
parent 1fad91a4e2
commit 0f8a1346c7
2 changed files with 2 additions and 2 deletions

View File

@@ -15,7 +15,7 @@ on:
jobs: jobs:
build: build:
if: github.event_name == 'pull_request' && !github.event.pull_request.draft if: github.event_name != 'pull_request' || (github.event_name == 'pull_request' && !github.event.pull_request.draft)
strategy: strategy:
matrix: matrix:
arch: [x86_64] arch: [x86_64]

View File

@@ -15,7 +15,7 @@ on:
jobs: jobs:
build: build:
if: github.event_name == 'pull_request' && !github.event.pull_request.draft if: github.event_name != 'pull_request' || (github.event_name == 'pull_request' && !github.event.pull_request.draft)
strategy: strategy:
matrix: matrix:
arch: [x86_64, arm64] arch: [x86_64, arm64]