mirror of
https://github.com/cachix/install-nix-action.git
synced 2024-11-21 16:10:52 +00:00
Merge pull request #32 from cachix/install_url
Allow overriding installation URL
This commit is contained in:
commit
d3c3fef7d5
2 changed files with 4 additions and 1 deletions
|
@ -1,6 +1,9 @@
|
|||
name: 'Install Nix'
|
||||
description: 'Installs Nix on GitHub Actions for the supported platforms: Linux and macOS.'
|
||||
author: 'Domen Kožar'
|
||||
inputs:
|
||||
install_url:
|
||||
description: 'Installation URL that will contain a script to install Nix'
|
||||
branding:
|
||||
color: 'blue'
|
||||
icon: 'sun'
|
||||
|
|
|
@ -26,7 +26,7 @@ nixConf
|
|||
# Needed due to multi-user being too defensive
|
||||
export ALLOW_PREEXISTING_INSTALLATION=1
|
||||
|
||||
sh <(curl -L https://nixos.org/nix/install) --daemon
|
||||
sh <(curl -L ${INPUT_INSTALL_URL:-https://nixos.org/nix/install}) --daemon
|
||||
|
||||
# write nix.conf again as installation overwrites it
|
||||
nixConf
|
||||
|
|
Loading…
Reference in a new issue