diff options
-rw-r--r-- | ci/pipelines/post-receive.nix | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ci/pipelines/post-receive.nix b/ci/pipelines/post-receive.nix index d41c3b67b328..6353db4602ad 100644 --- a/ci/pipelines/post-receive.nix +++ b/ci/pipelines/post-receive.nix @@ -19,7 +19,9 @@ let } { key = "build-briefcase"; - command = "nix-build . -I briefcase=$(pwd) --no-out-link --show-trace"; + command = '' + nix-build . -I briefcase="$(pwd)" --no-out-link --show-trace + ''; label = ":nix: build briefcase"; depends_on = "lint-secrets"; } |