From 41b31876629f69c3e077805abb9e187f86ed5ae6 Mon Sep 17 00:00:00 2001 From: Bas van Dijk Date: Wed, 26 Aug 2020 10:23:44 +0200 Subject: [PATCH] fix: Nix evaluation of ci/release.nix https://github.com/dfinity-lab/sdk/pull/949 removed the `x86_64-linux` attribute of the `publish.dfx.x86_64-linux` job which broke evaluation of `ci/release.nix`. --- ci/release.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/release.nix b/ci/release.nix index 01875e5a2d..f55f992154 100644 --- a/ci/release.nix +++ b/ci/release.nix @@ -11,5 +11,5 @@ let ci = import ./ci.nix { inherit src releaseVersion; }; in if !doRelease then {} else { - publish.dfx.x86_64-linux = ci.publish.dfx.x86_64-linux; + publish.dfx = ci.publish.dfx; }