[READ-ONLY] Mirror of https://github.com/flo-bit/tiny-docs. quick setup, simple, minimalistic docs for your github project flo-bit.dev/tiny-docs/
0

Configure Feed

Select the types of activity you want to include in your feed.

fix

+2 -2
+2 -2
.github/workflows/tiny-docs.yml
··· 79 79 NAME='${{ steps.derive.outputs.name }}' 80 80 81 81 if command -v jq >/dev/null 2>&1; then 82 - jq -n --arg site "$SITE" --arg base "$BASE" --arg name "$NAME" \ 82 + jq -n --arg SITE "$SITE" --arg BASE "$BASE" --arg SITE_NAME "$NAME" \ 83 83 '{site:$site, base:$base, name:$name}' > docs/config.json 84 84 else 85 - printf '{\n "site": "%s",\n "base": "%s",\n "name": "%s"\n}\n' \ 85 + printf '{\n "SITE": "%s",\n "BASE": "%s",\n "SITE_NAME": "%s"\n}\n' \ 86 86 "$SITE" "$BASE" "$NAME" > docs/config.json 87 87 fi 88 88 echo "Created docs/config.json, site=$SITE, base=$BASE, name=$NAME"