Skip to content

Commit d5ef18d

Browse files
committed
fix: remove Google Play signed info text file from release
- Remove unnecessary info text file generation and upload - Keep only the signed APK upload to GitHub release - Simplifies release artifacts
1 parent ba0e870 commit d5ef18d

File tree

1 file changed

+0
-30
lines changed

1 file changed

+0
-30
lines changed

.github/workflows/release.yml

Lines changed: 0 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -781,43 +781,13 @@ jobs:
781781
echo "found=false" >> $GITHUB_OUTPUT
782782
fi
783783
784-
- name: Create Google Play link info
785-
if: steps.download-apk.outputs.found == 'true'
786-
id: play-link
787-
run: |
788-
VERSION_NAME="${{ needs.prepare.outputs.version }}"
789-
VERSION_CODE="${{ needs.prepare.outputs.version_code }}"
790-
791-
# Create info file about Google Play signing
792-
cat > "v2er-${VERSION_NAME}_google_play_signed_info.txt" << EOF
793-
Google Play Signed APK Information
794-
==================================
795-
Version: ${VERSION_NAME}
796-
Version Code: ${VERSION_CODE}
797-
Package: me.ghui.v2er
798-
799-
The APK attached (v2er-${VERSION_NAME}_google_play_signed.apk) is a universal APK
800-
generated from the AAB (Android App Bundle) that was uploaded to Google Play.
801-
802-
When downloaded from Google Play Store, the APK will be signed with Google Play's
803-
app signing certificate instead of the upload certificate.
804-
805-
Internal Testing Link:
806-
https://play.google.com/apps/test/me.ghui.v2er/${VERSION_CODE}
807-
808-
Note: Access to internal testing track required.
809-
EOF
810-
811-
echo "info_path=v2er-${VERSION_NAME}_google_play_signed_info.txt" >> $GITHUB_OUTPUT
812-
813784
- name: Upload signed APK to GitHub Release
814785
if: steps.download-apk.outputs.found == 'true'
815786
uses: softprops/action-gh-release@v2
816787
with:
817788
tag_name: ${{ needs.prepare.outputs.version }}
818789
files: |
819790
${{ steps.download-apk.outputs.apk_path }}
820-
${{ steps.play-link.outputs.info_path }}
821791
fail_on_unmatched_files: false
822792

823793
- name: Summary

0 commit comments

Comments
 (0)