Skip to content

Commit

Permalink
CI: Fix some typos introduced in #1009 (#1010)
Browse files Browse the repository at this point in the history
* CI: Fix a typo

* CI: Fix another typo
  • Loading branch information
DilumAluthge authored Nov 23, 2024
1 parent f5dffa5 commit ea484c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit ea484c2

Please sign in to comment.