install-nix-action/action.yml

30 lines
1.1 KiB
YAML
Raw Normal View History

name: "Install Nix"
description: "Installs Nix on GitHub Actions for the supported platforms: Linux and macOS."
author: "Domen Kožar"
2020-05-14 11:21:40 +00:00
inputs:
extra_nix_config:
description: "Gets appended to `/etc/nix/nix.conf` if passed."
github_access_token:
description: "Configure nix to pull from github using the given github token."
2020-05-14 11:21:40 +00:00
install_url:
description: "Installation URL that will contain a script to install Nix."
2021-02-20 21:46:57 +00:00
install_options:
description: "Additional installer flags passed to the installer script."
2020-05-28 14:25:05 +00:00
nix_path:
description: "Set NIX_PATH environment variable."
2019-09-29 19:52:02 +00:00
branding:
color: "blue"
icon: "sun"
2019-09-29 19:52:02 +00:00
runs:
using: "composite"
steps:
- run: ${GITHUB_ACTION_PATH}/install-nix.sh
shell: bash
env:
INPUT_EXTRA_NIX_CONFIG: ${{ inputs.extra_nix_config }}
INPUT_GITHUB_ACCESS_TOKEN: ${{ inputs.github_access_token }}
INPUT_INSTALL_OPTIONS: ${{ inputs.install_options }}
INPUT_INSTALL_URL: ${{ inputs.install_url }}
INPUT_NIX_PATH: ${{ inputs.nix_path }}
GITHUB_TOKEN: ${{ github.token }}