1
0
Fork 0
mirror of https://git.madhouse-project.org/actions/nix.git synced 2024-11-24 04:29:17 +01:00
nix/build/bin/nix-build

13 lines
261 B
Text
Raw Normal View History

#! /usr/bin/env bash
set -eo pipefail
LOGS=""
case "${INPUT_LOGS}" in
[yY][eE][sS]|[tT][rR][uU][eE]|[oO][nN]|1)
LOGS=-L
;;
esac
nix build ${LOGS} "${INPUT_FLAKE}#${INPUT_PACKAGE}"
echo "output-path=$(readlink result)" >>"${GITHUB_OUTPUT}"