aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-03-25 10:57:02 -0400
committerJoshua M. Boniface <joshua@boniface.me>2024-03-25 10:57:02 -0400
commita39cd584e8646a497e0f07c076c686eea7404299 (patch)
tree3ec2fa8f39c3b3d1a36948510e0d987cb990188f
parent38e76963948a18763fb9e31790a339e65a8dd922 (diff)
Fix multi-condition syntax
-rw-r--r--.github/workflows/ci-openapi.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci-openapi.yml b/.github/workflows/ci-openapi.yml
index fbd251833..a96771b77 100644
--- a/.github/workflows/ci-openapi.yml
+++ b/.github/workflows/ci-openapi.yml
@@ -140,9 +140,9 @@ jobs:
publish:
name: OpenAPI - Publish Unstable Spec
- if:
- - github.event_name != 'pull_request'
- - contains(github.repository_owner, 'jellyfin')
+ if: |
+ github.event_name != 'pull_request' &&
+ contains(github.repository_owner, 'jellyfin')
runs-on: ubuntu-latest
needs:
- openapi-head