From 50d57f623671afd2ecd4180b928a4e44cbabe399 Mon Sep 17 00:00:00 2001 From: Silvan Mosberger Date: Wed, 17 Jan 2024 21:25:28 +0100 Subject: [PATCH] check-by-name: Fix CI Wasn't detected in https://github.com/NixOS/nixpkgs/pull/281407 --- .github/workflows/check-by-name.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/check-by-name.yml b/.github/workflows/check-by-name.yml index ca2a95a2198c..983b10e4cd40 100644 --- a/.github/workflows/check-by-name.yml +++ b/.github/workflows/check-by-name.yml @@ -94,7 +94,7 @@ jobs: - name: Fetching the pinned tool run: | # Get the direct /nix/store path from the pin to avoid having to evaluate Nixpkgs - toolPath=$(jq -r .ci-path pkgs/test/nixpkgs-check-by-name/scripts/pinned-tool.json) + toolPath=$(jq -r '."ci-path"' pkgs/test/nixpkgs-check-by-name/scripts/pinned-tool.json) # This asks the substituter for the path, which should be there because Hydra will have pre-built and pushed it nix-store --realise "$toolPath" --add-root result - name: Running nixpkgs-check-by-name