feat(ansible_collection): custom release actions

enables commands to be ran before the git commit and git tag

!80
This commit is contained in:
2024-02-24 15:57:25 +09:30
parent 4f65bc1367
commit 6f80ea3af7

View File

@ -240,6 +240,16 @@ variables:
fi;
- | # Custom commands from RELEASE_ADDITIONAL_ACTIONS_BUMP
if [ ${RELEASE_ADDITIONAL_ACTIONS_BUMP} ]; then
echo "Custom commands found in variable RELEASE_ADDITIONAL_ACTIONS_BUMP";
${RELEASE_ADDITIONAL_ACTIONS_BUMP}
fi;
# - | # Find merge request ID
# echo "Trace CI_OPEN_MERGE_REQUESTS[${CI_OPEN_MERGE_REQUESTS}]";