Skip to content
Snippets Groups Projects
Commit cd092087 authored by Dean Lovett's avatar Dean Lovett
Browse files

chore: added changelog tools

parent 4c3c3e17
No related branches found
No related tags found
1 merge request!3Update Nexus Tools
......@@ -12,6 +12,7 @@ display_help() {
echo "restart Stops and then starts a docker-compose service"
echo "rebuild Stops, builds and then starts a docker-compose service"
echo "logs Shows the logs for a docker-compose service"
echo "changelog, cl Runs the service changelog tool, for managing compiled changelogs"
echo "cq, code-quality Runs the nexus code quality tool"
echo "gu, gemfile-updater Runs the gemfile updater tool, outputting common gemfiles in the console"
echo "bu, bundle-update Mounts the Gemfile and lockfile and runs bundle update."
......@@ -65,6 +66,12 @@ case "$1" in
docker pull $CQ_IMAGE
docker run --rm -v "$PWD":/app/mounted $CQ_IMAGE "$@"
;;
changelog|cl)
shift
CL_IMAGE=registry.nexusmods.com/nexus-mods/devops/tools/services-changelog:stable
docker pull $CL_IMAGE
docker run --rm -v ${SSH_AUTH_SOCK}:/ssh-agent -e SSH_AUTH_SOCK=/ssh-agent -v "$PWD":/app $CL_IMAGE "$@"
;;
gu|gemfile-updater)
shift
GU_IMAGE=registry.nexusmods.com/public/gemfile-updater:stable
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment