11 lines
393 B
Bash
Executable file
11 lines
393 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
# Usage: ./create_versioned_hugo_toml.sh INFILE OUTFILE
|
|
# Replaces the version placeholders in hugo.toml with versions taken from
|
|
# $GITHUB_REF_NAME and $GITHUB_SHA environment variables.
|
|
|
|
cp "$1" "$2"
|
|
sed -i -e "s#{{TAG}}#$GITHUB_REF_NAME#g" "$2"
|
|
sed -i -e "s/{{COMMIT}}/$GITHUB_SHA/g" "$2"
|
|
sed -i -e "s/show_version = false/show_version = true/g" "$2"
|