diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2024-03-25 10:57:02 -0400 |
|---|---|---|
| committer | Joshua M. Boniface <joshua@boniface.me> | 2024-03-25 10:57:02 -0400 |
| commit | a39cd584e8646a497e0f07c076c686eea7404299 (patch) | |
| tree | 3ec2fa8f39c3b3d1a36948510e0d987cb990188f | |
| parent | 38e76963948a18763fb9e31790a339e65a8dd922 (diff) | |
Fix multi-condition syntax
| -rw-r--r-- | .github/workflows/ci-openapi.yml | 6 |
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 |
