mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-21 16:10:52 +00:00
Merge pull request #52 from wamserma/patch-1
replace deprecated functions
This commit is contained in:
commit
da678383b2
1 changed files with 4 additions and 4 deletions
|
@ -35,15 +35,15 @@ if [[ $OSTYPE =~ darwin ]]; then
|
|||
|
||||
# macOS needs certificates hints
|
||||
cert_file=/nix/var/nix/profiles/default/etc/ssl/certs/ca-bundle.crt
|
||||
echo "::set-env name=NIX_SSL_CERT_FILE::$cert_file"
|
||||
echo "NIX_SSL_CERT_FILE=$cert_file" >> $GITHUB_ENV
|
||||
export NIX_SSL_CERT_FILE=$cert_file
|
||||
sudo launchctl setenv NIX_SSL_CERT_FILE "$cert_file"
|
||||
fi
|
||||
|
||||
# Set paths
|
||||
echo "::add-path::/nix/var/nix/profiles/per-user/$USER/profile/bin"
|
||||
echo "::add-path::/nix/var/nix/profiles/default/bin"
|
||||
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
|
||||
echo "::set-env name=NIX_PATH::${INPUT_NIX_PATH}"
|
||||
echo "NIX_PATH=${INPUT_NIX_PATH}" >> $GITHUB_ENV
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue