git-preview @ main

static git web frontend but with images and html previews + code truncation

Include repository description in preview creation
Tue, 14 Jul 2026
1 files changed, 5 insertions(+), 1 deletions(-)
M .github/workflows/static.yml

@@ -36,7 +36,11 @@ go-version-file: go.mod

cache: true - name: Create bare preview repository - run: git clone --bare . preview-repos/git-preview + env: + REPOSITORY_DESCRIPTION: ${{ github.event.repository.description }} + run: | + git clone --bare . preview-repos/git-preview + printf '%s\n' "$REPOSITORY_DESCRIPTION" > preview-repos/git-preview/description

… preview truncated