Skip to content

Commit 449f9da

Browse files
committed
[#490] Update step name
1 parent 922f7b9 commit 449f9da

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.cicdtemplate/.codemagic/codemagic.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ workflows:
9797
- name: Build APK for production
9898
script: |
9999
./gradlew assembleProductionDebug -PversionCode=$BUILD_NUMBER
100-
- name: Generating release notes with git commits from the latest tag
100+
- name: Generate release notes with git commits from the latest tag
101101
script: |
102102
RELEASE_NOTE_CONTENT="$(git log --merges --pretty=%B $(git describe --abbrev=0 --tags)..HEAD | grep "\[")"
103103
echo "$RELEASE_NOTE_CONTENT" | tee release_notes.txt

codemagic.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ workflows:
6363
working_directory: ./template-compose
6464
script: |
6565
./gradlew assembleStagingDebug -PversionCode=$BUILD_NUMBER
66-
- name: Generating release notes with the latest git commit
66+
- name: Generate release notes with the latest git commit
6767
script: |
6868
RELEASE_NOTE_CONTENT="$((git log -1 --merges | grep "\[") | grep . && echo "" || echo $(git log -1 --merges --format=%B))"
6969
echo "$RELEASE_NOTE_CONTENT" | tee release_notes.txt
@@ -101,7 +101,7 @@ workflows:
101101
working_directory: ./template-compose
102102
script: |
103103
./gradlew assembleProductionDebug -PversionCode=$BUILD_NUMBER
104-
- name: Generating release notes with git commits from the latest tag
104+
- name: Generate release notes with git commits from the latest tag
105105
script: |
106106
RELEASE_NOTE_CONTENT="$(git log --merges --pretty=%B $(git describe --abbrev=0 --tags)..HEAD | grep "\[")"
107107
echo "$RELEASE_NOTE_CONTENT" | tee release_notes.txt

0 commit comments

Comments
 (0)