Skip to content

Commit f29c378

Browse files
committed
Fix incorrect changelogs being generated on release
The `git-clone` step was fetching the repository without tags. This made the changelog step not know what is the latest tag, thus generating a changelog with all commits in the repo. By fetching the tags, Bitrise will be able to generate a changelog from the latest tag to the most recent commit. MOB-1610
1 parent 556cb12 commit f29c378

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

bitrise.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,9 @@ workflows:
243243
description: Task builds an SDK and uploads it to Nexus.
244244
steps:
245245
- activate-ssh-key@4: {}
246-
- git-clone@6: {}
246+
- git-clone:
247+
inputs:
248+
- fetch_tags: 'yes'
247249
- cache-pull@2: {}
248250
- install-missing-android-tools@3:
249251
inputs:

0 commit comments

Comments
 (0)