dnscontrol-action/entrypoint.sh

49 lines
1 KiB
Bash
Raw Normal View History

2019-01-05 19:24:28 +08:00
#!/usr/bin/env bash
set -o pipefail
2019-01-05 19:24:28 +08:00
2021-07-14 00:21:01 +08:00
escape() {
local input="$1"
# https://github.community/t/set-output-truncates-multiline-strings/16852/3
input="${input//'%'/'%25'}"
input="${input//$'\n'/'%0A'}"
input="${input//$'\r'/'%0D'}"
echo "$input"
}
# Resolve to full paths
CONFIG_ABS_PATH="$(readlink -f "${INPUT_CONFIG_FILE}")"
CREDS_ABS_PATH="$(readlink -f "${INPUT_CREDS_FILE}")"
WORKING_DIR="$(dirname "${CONFIG_ABS_PATH}")"
2021-02-08 01:01:42 +08:00
cd "$WORKING_DIR" || exit
ARGS=(
"$@"
--config "$CONFIG_ABS_PATH"
)
# 'check' sub-command doesn't require credentials
if [ "$1" != "check" ]; then
ARGS+=(--creds "$CREDS_ABS_PATH")
fi
IFS=
OUTPUT="$(dnscontrol "${ARGS[@]}")"
EXIT_CODE="$?"
echo "$OUTPUT"
2021-07-14 00:21:01 +08:00
# Filter output to reduce 'preview' PR comment length
FILTERED_OUTPUT="$(echo "$OUTPUT" | /filter-preview-output.sh)"
OUTPUT="$(escape "$OUTPUT")"
FILTERED_OUTPUT="$(escape "$FILTERED_OUTPUT")"
echo "::set-output name=output::$OUTPUT"
2021-07-14 00:21:01 +08:00
echo "::set-output name=preview_comment::$FILTERED_OUTPUT"
exit $EXIT_CODE