mirror of
https://github.com/Haskell-Things/ImplicitCAD.git
synced 2024-11-04 01:26:48 +03:00
13 lines
303 B
Bash
Executable File
13 lines
303 B
Bash
Executable File
#!/usr/bin/env bash
|
|
# Script by @fisx
|
|
|
|
set -eo pipefail
|
|
|
|
# cd into the dir where this script is placed
|
|
cd "$( dirname "${BASH_SOURCE[0]}" )"
|
|
|
|
echo "regenerating .github/workflows/ci.yaml"
|
|
|
|
which dhall-to-yaml-ng || cabal install dhall-yaml
|
|
dhall-to-yaml-ng --generated-comment --file ci.dhall > ci.yaml
|