alpha
Login
or
Join now
flo-bit.dev
/
tiny-docs
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[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/
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
fix
author
Florian
date
9 months ago
(Oct 26, 2025, 9:44 PM +0100)
commit
9825feea
9825feeac316d77ca35146a1cc568933e6ce7802
parent
e3b19a0f
e3b19a0f50f73395db2a541dd37168b932e32107
+2
-2
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
tiny-docs.yml
+2
-2
.github/workflows/tiny-docs.yml
View file
Reviewed
···
79
79
NAME='${{ steps.derive.outputs.name }}'
80
80
81
81
if command -v jq >/dev/null 2>&1; then
82
82
-
jq -n --arg site "$SITE" --arg base "$BASE" --arg name "$NAME" \
82
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
85
-
printf '{\n "site": "%s",\n "base": "%s",\n "name": "%s"\n}\n' \
85
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"