Skip to content

Commit 1632fa0

Browse files
committed
Fix CI check for !shards
1 parent a384662 commit 1632fa0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
if: ${{ contains(matrix.config.shards, '.') }}
7171
- run: |
7272
! shards --version
73-
if: ${{ matrix.config.shards == 'false' }}
73+
if: ${{ contains(matrix.config.shards, 'false') }}
7474
- run: |
7575
shards build
7676
working-directory: test-project

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
if: ${{ contains(matrix.config.shards, '.') }}
7171
- run: |
7272
! shards --version
73-
if: ${{ matrix.config.shards == 'false' }}
73+
if: ${{ contains(matrix.config.shards, 'false') }}
7474
- run: |
7575
shards build
7676
working-directory: test-project

0 commit comments

Comments
 (0)