dotfiles/.github/scripts/render-dhall-changes.sh
2024-05-11 06:11:15 +02:00

6 lines
174 B
Bash
Executable file

#!/usr/bin/env bash
set -euo pipefail
for file in .github/workflows/*.dhall; do
nix shell nixpkgs#dhall-yaml -c dhall-to-yaml-ng --file "$file" >"${file%.dhall}.yml"
done