nixfiles/wrappers/generate.sh
2025-07-13 05:10:57 -07:00

7 lines
216 B
Bash

#!/usr/bin/env bash
set -eu
for ciconfig in "${NF_CONFIG_FILES[@]}"; do
echo "processing ${ciconfig}..." >&2
nix run --argstr config "$NF_CONFIG_ROOT/ci/$ciconfig" -f "$NF_INPUT_CI" run.gh-actions-generate
done