mirror of
https://github.com/puppetlabs/vmpooler-deployment.git
synced 2026-01-26 11:38:41 -05:00
In the process of doing a 3.8.0 release, I also found some places where scripts needed some care and documentation updated/clarified.
11 lines
357 B
Bash
Executable file
11 lines
357 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
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"
|