mirror of
https://git.madhouse-project.org/actions/nix.git
synced 2024-11-24 04:29:17 +01:00
13 lines
261 B
Text
13 lines
261 B
Text
|
#! /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}"
|