From 886552a8e292d5a2aeb23efa365e072103177931 Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Fri, 22 Nov 2024 19:17:40 -0500 Subject: [PATCH 1/2] CI: Fix a typo --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: From 4af669f9715f949d42f47c07505291affa08e70f Mon Sep 17 00:00:00 2001 From: Dilum Aluthge Date: Fri, 22 Nov 2024 19:18:07 -0500 Subject: [PATCH 2/2] CI: Fix another typo --- .github/workflows/ci.nightly.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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: