mirror of
https://github.com/kittywitch/nixfiles.git
synced 2026-02-10 04:49:19 -08:00
7 lines
216 B
Bash
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
|