Skip to content

Commit 52719ac

Browse files
Fix bool conditions
1 parent 0f2ff50 commit 52719ac

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/flake-check.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- uses: cachix/install-nix-action@v30
4040

4141
- name: run nix flake check with ${{ matrix.targets.repo }}/${{ matrix.targets.branch }}
42-
if: matrix.targets.repo != 'NuschtOS/nuschtpkgs' && matrix.targets.branch != 'nixos-unstable'
42+
if: matrix.targets.repo != 'NuschtOS/nuschtpkgs' || matrix.targets.branch != 'nixos-unstable'
4343
run: |
4444
nix flake check \
4545
--override-input nixpkgs github:${{ matrix.targets.repo }}/${{ matrix.targets.branch }}

.github/workflows/plain-eval.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
- uses: cachix/install-nix-action@v30
4040

4141
- name: eval plain config with ${{ matrix.targets.repo }}/${{ matrix.targets.branch }}
42-
if: matrix.targets.repo != 'NuschtOS/nuschtpkgs' && matrix.targets.branch != 'nixos-unstable'
42+
if: matrix.targets.repo != 'NuschtOS/nuschtpkgs' || matrix.targets.branch != 'nixos-unstable'
4343
run: |
4444
nix eval -L .#checks.x86_64-linux.no-config \
4545
--override-input nixpkgs github:${{ matrix.targets.repo }}/${{ matrix.targets.branch }}

0 commit comments

Comments
 (0)