We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fd1d0b commit e3cc568Copy full SHA for e3cc568
.github/workflows/matrix_builds.yaml
@@ -282,6 +282,10 @@ jobs:
282
# Add nix to PATH for subsequent steps
283
echo "/nix/var/nix/profiles/default/bin" >> "$GITHUB_PATH"
284
echo "${HOME}/.nix-profile/bin" >> "$GITHUB_PATH"
285
+ # Symlink nix binaries to /usr/local/bin for child processes
286
+ for bin in /nix/var/nix/profiles/default/bin/*; do
287
+ sudo ln -sf "$bin" /usr/local/bin/ 2>/dev/null || true
288
+ done
289
# Configure nix
290
echo "access-tokens = github.com=${GITHUB_TOKEN}" | sudo tee -a /etc/nix/nix.conf
291
# Set environment variables
0 commit comments