Skip to content

Commit ec10c95

Browse files
committed
add package name and aab path
1 parent 2a4c3c7 commit ec10c95

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

.github/workflows/continuous-delivery-pipeline.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ jobs:
301301
- name: Set versionCode to git count
302302
run: |
303303
export versionCode=$(git rev-list --first-parent --count HEAD)
304-
sed -i -d "s/versionCode = 999/versionCode = $versionCode/g" app/build.gradle.kts
304+
sed -i -d "s/versionCode = 9999/versionCode = $versionCode/g" app/build.gradle.kts
305305
306306
- name: Build release bundle
307307
run: |

fastlane/Fastfile

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ platform :android do
2424
desc "Deploy a new version to the Google Play"
2525
lane :deploy do
2626
upload_to_play_store(
27-
track: "alpha",
27+
package_name: "photos.network",
28+
aab_paths: [
29+
"app/build/outputs/bundle/release/app-release.aab",
30+
],
31+
track: "internal",
2832
skip_upload_apk: true,
2933
skip_upload_aab: false,
3034
skip_upload_metadata: true,

0 commit comments

Comments
 (0)