diff --git a/.github/workflows/ci.nightly.yml b/.github/workflows/ci.nightly.yml index ea3b5270..f6663280 100644 --- a/.github/workflows/ci.nightly.yml +++ b/.github/workflows/ci.nightly.yml @@ -19,7 +19,7 @@ jobs: test-nightly: # We do not run the full test suite on tags, because we already ran it on master before we made the release. # We do build the docs on tags. - if: (github.event_name != 'push') || (github.ref_type == 'tag') + if: (github.event_name != 'push') || (github.ref_type != 'tag') timeout-minutes: 150 runs-on: ${{ matrix.github-runner }} strategy: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 31da195e..721de8e1 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -41,7 +41,7 @@ jobs: test: # We do not run the full test suite on tags, because we already ran it on master before we made the release. # We do build the docs on tags. - if: (github.event_name != 'push') || (github.ref_type == 'tag') + if: (github.event_name != 'push') || (github.ref_type != 'tag') timeout-minutes: 150 runs-on: ${{ matrix.github-runner }} strategy: