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 de6e103 commit efa9ca2Copy full SHA for efa9ca2
.github/workflows/capacitor-android.yml
@@ -65,6 +65,13 @@ jobs:
65
--androidreleasetype APK \
66
--signing-type apksigner
67
68
+ - name: Rename APK with version from package.json
69
+ run: |
70
+ VERSION=$(node -p "require('./package.json').version")
71
+ SRC="android/app/build/outputs/apk/release/app-release-signed.apk"
72
+ DEST="android/app/build/outputs/apk/release/ADAMANT.Messenger-${VERSION}-signed.apk"
73
+ mv "$SRC" "$DEST"
74
+
75
- name: Build and Sign Android App (AAB) 🛠️
76
run: |
77
npx cap sync
0 commit comments