Hi everybody, after some struggles I’ve been able to configure my repository and to run the tests and make the deployment via Beta-Fabric, by this command every time that I made a push to my_new_feature branch a build is delivered to my testers
deployment:
deliver_dev_build:
branch: my_new_feature
commands:
- ./gradlew assembleDebug crashlyticsUploadDistributionDevDebug
And with this command I can set the Release notes, which are the last commit message to the my_new_feature branch
$(git log --pretty=%B -n 1)
Now I want to deliver a build each time we create a release-tag in our github repository, I’ve made this change to circle.yml
deployment:
deliver_beta_build:
tag: /beta-.*/
owner: THE_OWNER
commands:
- ./gradlew assembleDebug crashlyticsUploadDistributionDevDebug
My question is
How can I get the Release-tag description for make it the Release notes in the Beta-Fabric build distribution?
Thanks