RE-16207: Create a 3.8.0 release / script cleanup

In the process of doing a 3.8.0 release, I also found some places where scripts needed some care and documentation updated/clarified.
This commit is contained in:
Eric Griswold 2024-07-01 14:16:04 -07:00
parent 5ac8fb98ed
commit b18a443e4b
7 changed files with 110 additions and 62 deletions

View file

@ -1,5 +1,11 @@
#!/usr/bin/env bash
docker run -it --rm -e CHANGELOG_GITHUB_TOKEN -v $(pwd):/usr/local/src/your-app \
githubchangeloggenerator/github-changelog-generator:1.16.2 \
github_changelog_generator --future-release $(yq .version helm-charts/vmpooler/Chart.yaml)
set -e
set -x
future_release=$(yq .version helm-charts/vmpooler/Chart.yaml)
docker run --interactive --tty --rm=true --env=CHANGELOG_GITHUB_TOKEN \
--volume=$(pwd):/usr/local/src/your-app \
githubchangeloggenerator/github-changelog-generator:1.16.2 \
github_changelog_generator --future-release="$future_release"