This commit is contained in:
Domen Kožar 2021-10-15 16:45:20 -05:00
parent c5729e9110
commit 712fbc2bf9

View file

@ -1,12 +1,9 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -euo pipefail set -euo pipefail
profileEnv=$HOME/.nix-profile/etc/profile.d/nix.sh # Set paths early (ephemeral self-hosted runners might reuse a runner)
echo "/nix/var/nix/profiles/per-user/$USER/profile/bin" >> "$GITHUB_PATH"
# if Nix profile already exists, source the environment. This is mostly useful for self-hosted runners, see issue #98 echo "/nix/var/nix/profiles/default/bin" >> "$GITHUB_PATH"
if [[ -f $profileEnv ]]; then
source $profileEnv
fi
if type -p nix &>/dev/null ; then if type -p nix &>/dev/null ; then
echo "Aborting: Nix is already installed at $(type -p nix)" echo "Aborting: Nix is already installed at $(type -p nix)"
@ -62,9 +59,6 @@ if [[ $OSTYPE =~ darwin ]]; then
sudo launchctl setenv NIX_SSL_CERT_FILE "$cert_file" sudo launchctl setenv NIX_SSL_CERT_FILE "$cert_file"
fi fi
# Set paths
echo "/nix/var/nix/profiles/per-user/$USER/profile/bin" >> "$GITHUB_PATH"
echo "/nix/var/nix/profiles/default/bin" >> "$GITHUB_PATH"
if [[ $INPUT_NIX_PATH != "" ]]; then if [[ $INPUT_NIX_PATH != "" ]]; then
echo "NIX_PATH=${INPUT_NIX_PATH}" >> "$GITHUB_ENV" echo "NIX_PATH=${INPUT_NIX_PATH}" >> "$GITHUB_ENV"