Skip to content

Commit

Permalink
chore: fix release pipeline to pass build version
Browse files Browse the repository at this point in the history
  • Loading branch information
adityastic committed Feb 23, 2025
1 parent d73b87f commit 7f4356b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,9 @@ jobs:
- name: Push version to production (iOS)
run: |
cd ./iOS
fastlane promoteToProduction build_number:${{ steps.download-assets.outputs.VERSION_CODE }}
VERSION_TAG="${{ github.event.release.tag_name }}"
CLEAN_VERSION="${VERSION_TAG#v}"
fastlane promoteToProduction build_number:${{ steps.download-assets.outputs.VERSION_CODE }} version_name:${CLEAN_VERSION}
if [[ $? -ne 0 ]]; then
exit 1
fi

0 comments on commit 7f4356b

Please sign in to comment.