We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d73b87f commit 7f4356bCopy full SHA for 7f4356b
.github/workflows/release.yml
@@ -85,7 +85,9 @@ jobs:
85
- name: Push version to production (iOS)
86
run: |
87
cd ./iOS
88
- fastlane promoteToProduction build_number:${{ steps.download-assets.outputs.VERSION_CODE }}
+ VERSION_TAG="${{ github.event.release.tag_name }}"
89
+ CLEAN_VERSION="${VERSION_TAG#v}"
90
+ fastlane promoteToProduction build_number:${{ steps.download-assets.outputs.VERSION_CODE }} version_name:${CLEAN_VERSION}
91
if [[ $? -ne 0 ]]; then
92
exit 1
93
fi
0 commit comments