This component publishes release notes to stores.
$AC_RELEASE_NOTES_PATH
: Specifies the path of your release notes.$AC_AUTO_RELEASE_NOTES
: If this is set to true, release notes will be generated by using the template below.$AC_RELEASE_NOTES_TEMPLATE
: You can enrich the contents of your release notes with environment variables or with ruby snippets. The following template prints metadata about the Git repository and the Appcircle build:
Branch: $AC_GIT_BRANCH
Commit Hash: <%= ENV['AC_GIT_COMMIT'][0..6] %>
Commit Message: $AC_COMMIT_MESSAGE
Trigger Type: $AC_TRIGGER_REASON
Trigger User: $AC_INTERNAL_TRIGGER_USER
Git Tag: $AC_COMMIT_TAGS
Build Configuration: $AC_INTERNAL_CONFIGURATION_NAME
Build Workflow: $AC_WORKFLOW_NAME
Please check Ruby documentation for the usage of ERB.