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 2000
author
Florian
date
9 months ago
(Oct 26, 2025, 10:00 PM +0100)
commit
acd4aeb8
acd4aeb8fb17609f2d94f422e9e3a453974135a8
parent
4c72d50f
4c72d50f0c59046585c58a0fb424c186f415517e
+5
-2
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
tiny-docs.yml
+5
-2
.github/workflows/tiny-docs.yml
View file
Reviewed
···
78
78
BASE='${{ steps.derive.outputs.base }}'
79
79
NAME='${{ steps.derive.outputs.name }}'
80
80
81
81
-
printf '{\n "BASE": "/%s",\n "SITE_NAME": "%s"\n}\n' \
82
82
-
"$BASE" "$NAME" > docs/config.json
81
81
+
printf '{\n "SITE": "%s",\n "BASE": "/%s",\n "SITE_NAME": "%s"\n}\n' \
82
82
+
"$SITE" "$BASE" "$NAME" > docs/config.json
83
83
84
84
echo "Created docs/config.json, site=$SITE, base=$BASE, name=$NAME"
85
85
else
86
86
echo "docs/config.json already exists; leaving it unchanged."
87
87
fi
88
88
+
89
89
+
echo "🔍 File contents:"
90
90
+
cat docs/config.json
88
91
89
92
- name: Install, build, and upload the site artifact
90
93
uses: withastro/action@v3