Skip to content

Commit

Permalink
Change log fix
Browse files Browse the repository at this point in the history
  • Loading branch information
TheBlackBit committed Aug 22, 2023
1 parent c78f86c commit c1f73ca
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/deliver_beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,9 @@ jobs:
- run: mkdir -p ${{github.workspace}}/fastlane/metadata/android/en-US/changelogs/
- run: |
# Create what's new section
echo $CHANGE_LOG > ${{github.workspace}}/fastlane/metadata/android/en-US/changelogs/default.txt
CHANGE_LOG_CONTENT=${{ env.CHANGE_LOG }}
echo "$CHANGE_LOG_CONTENT" > ${{github.workspace}}/fastlane/metadata/android/en-US/changelogs/default.txt
cat ${{github.workspace}}/fastlane/metadata/android/en-US/changelogs/default.txt
- run: fastlane increment_app_version_code track:"beta"
- run: fastlane set_version_name version:${{ env.RELEASE_VERSION }}
- run: fastlane generate_aab
Expand Down

0 comments on commit c1f73ca

Please sign in to comment.