- change readme file path for consistency - replace cull-gmail with gen-changelog for changelog generation
11 lines
286 B
Bash
Executable File
11 lines
286 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# Build an updated README
|
|
cat docs/readme/head.md > README.md
|
|
# shellcheck disable=SC2129
|
|
cat docs/lib.md >> README.md
|
|
cat docs/main.md >> README.md
|
|
cat docs/readme/tail.md >> README.md
|
|
|
|
# Build Changelog
|
|
gen-changelog generate --display-summaries --next-version "$SEMVER" |