- create release-hook.sh for building updated README - integrate cull-gmail tool for changelog generation with versioning
11 lines
290 B
Bash
Executable File
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" |