Files
cull-gmail/release-hook.sh
Jeremiah Russell 6b42b2c00a 📦 build(release): add script for README and changelog generation
- create release-hook.sh for building updated README
- integrate cull-gmail tool for changelog generation with versioning
2025-09-29 22:28:57 +01:00

11 lines
290 B
Bash
Executable File

#!/bin/sh
# Build an updated README
cat docs/readme/head.md > README.md
# shellcheck disable=SC2129
cat docs/readme/lib.md >> README.md
cat docs/main.md >> README.md
cat docs/readme/tail.md >> README.md
# Build Changelog
cull-gmail generate --display-summaries --next-version "$SEMVER"