Skip to content

Commit

Permalink
[#490] Update step name
Browse files Browse the repository at this point in the history
  • Loading branch information
lydiasama committed Mar 11, 2024
1 parent 922f7b9 commit 449f9da
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .cicdtemplate/.codemagic/codemagic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ workflows:
- name: Build APK for production
script: |
./gradlew assembleProductionDebug -PversionCode=$BUILD_NUMBER
- name: Generating release notes with git commits from the latest tag
- name: Generate release notes with git commits from the latest tag
script: |
RELEASE_NOTE_CONTENT="$(git log --merges --pretty=%B $(git describe --abbrev=0 --tags)..HEAD | grep "\[")"
echo "$RELEASE_NOTE_CONTENT" | tee release_notes.txt
Expand Down
4 changes: 2 additions & 2 deletions codemagic.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ workflows:
working_directory: ./template-compose
script: |
./gradlew assembleStagingDebug -PversionCode=$BUILD_NUMBER
- name: Generating release notes with the latest git commit
- name: Generate release notes with the latest git commit
script: |
RELEASE_NOTE_CONTENT="$((git log -1 --merges | grep "\[") | grep . && echo "" || echo $(git log -1 --merges --format=%B))"
echo "$RELEASE_NOTE_CONTENT" | tee release_notes.txt
Expand Down Expand Up @@ -101,7 +101,7 @@ workflows:
working_directory: ./template-compose
script: |
./gradlew assembleProductionDebug -PversionCode=$BUILD_NUMBER
- name: Generating release notes with git commits from the latest tag
- name: Generate release notes with git commits from the latest tag
script: |
RELEASE_NOTE_CONTENT="$(git log --merges --pretty=%B $(git describe --abbrev=0 --tags)..HEAD | grep "\[")"
echo "$RELEASE_NOTE_CONTENT" | tee release_notes.txt
Expand Down

0 comments on commit 449f9da

Please sign in to comment.