dotfiles/.github/scripts/render-dhall-changes.sh

7 lines
174 B
Bash
Raw Normal View History

2024-05-11 04:59:47 +02:00
#!/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