Skip to content

Commit f51d974

Browse files
committed
Fix if statement syntax
1 parent a351557 commit f51d974

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Build and cache dev shell for ${{ matrix.systems.nix-system }} on ${{ matrix.systems.runner }}
4141
# We still support this system but caching the dev shell fails due to system support mismatch,
4242
# and we don't really need this cached anyway
43-
if: ${{ matrix.systems.nix-system }} != 'x86_64-darwin'
43+
if: ${{ matrix.systems.nix-system != 'x86_64-darwin' }}
4444
run: |
4545
nix build -L ".#devShells.${{ matrix.systems.nix-system }}.default"
4646

0 commit comments

Comments
 (0)