Skip to content

Commit ea484c2

Browse files
authored
CI: Fix some typos introduced in #1009 (#1010)
* CI: Fix a typo * CI: Fix another typo
1 parent f5dffa5 commit ea484c2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.nightly.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
test-nightly:
2020
# We do not run the full test suite on tags, because we already ran it on master before we made the release.
2121
# We do build the docs on tags.
22-
if: (github.event_name != 'push') || (github.ref_type == 'tag')
22+
if: (github.event_name != 'push') || (github.ref_type != 'tag')
2323
timeout-minutes: 150
2424
runs-on: ${{ matrix.github-runner }}
2525
strategy:

.github/workflows/ci.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
test:
4242
# We do not run the full test suite on tags, because we already ran it on master before we made the release.
4343
# We do build the docs on tags.
44-
if: (github.event_name != 'push') || (github.ref_type == 'tag')
44+
if: (github.event_name != 'push') || (github.ref_type != 'tag')
4545
timeout-minutes: 150
4646
runs-on: ${{ matrix.github-runner }}
4747
strategy:

0 commit comments

Comments
 (0)