fix null condition

This commit is contained in:
Clément DOUIN
2024-11-23 12:35:24 +01:00
parent e814b8aec2
commit 78b2be8499
+2 -2
View File
@@ -36,11 +36,11 @@ jobs:
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
extraPullNames: nix-community
- name: Build release
if: ${{ matrix.target }} != null
if: ${{ matrix.target }} != ""
run: |
nix-build --arg crossSystem '{ config = "${{ matrix.target }}"; }'
- name: Build release
if: ${{ matrix.target }} == null
if: ${{ matrix.target }} == ""
run: |
nix-build
- name: Upload release artifacts