update: build_release_apk.yml

This commit is contained in:
Hamza417
2025-04-04 03:16:35 +05:30
parent 1b5cd7e94d
commit 19d232a273

View File

@ -88,6 +88,15 @@ jobs:
echo "TAG=${TAG}" >> $GITHUB_ENV
echo "Tag: ${TAG}" # Print tag to console
- name: Check Fastlane Changelogs
run: |
if [ -f "fastlane/metadata/android/en-US/changelogs/${{ env.VERSION_CODE }}.txt" ]; then
echo "Changelog exists for version code ${{ env.VERSION_CODE }}."
else
echo "Changelog does not exist for version code ${{ env.VERSION_CODE }}."
exit 1
fi
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with: