Skip to content

Commit cb2a882

Browse files
committed
Fetch derivations from binary cache
1 parent 6887d74 commit cb2a882

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,10 @@ jobs:
3939
run: |
4040
set -euo pipefail
4141
sudo mkdir -p /etc/nix
42-
for line in "keep-outputs = true" "keep-derivations = true"; do
42+
for line in \
43+
"keep-outputs = true" \
44+
"keep-derivations = true" \
45+
"download-derivations = true"; do
4346
if ! grep -qF "$line" /etc/nix/nix.conf 2>/dev/null; then
4447
echo "$line" | sudo tee -a /etc/nix/nix.conf >/dev/null
4548
fi

0 commit comments

Comments
 (0)