Skip to content

Commit

Permalink
add package name and aab path
Browse files Browse the repository at this point in the history
  • Loading branch information
thebino committed Aug 20, 2023
1 parent 2a4c3c7 commit ec10c95
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/continuous-delivery-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,7 @@ jobs:
- name: Set versionCode to git count
run: |
export versionCode=$(git rev-list --first-parent --count HEAD)
sed -i -d "s/versionCode = 999/versionCode = $versionCode/g" app/build.gradle.kts
sed -i -d "s/versionCode = 9999/versionCode = $versionCode/g" app/build.gradle.kts
- name: Build release bundle
run: |
Expand Down
6 changes: 5 additions & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,11 @@ platform :android do
desc "Deploy a new version to the Google Play"
lane :deploy do
upload_to_play_store(
track: "alpha",
package_name: "photos.network",
aab_paths: [
"app/build/outputs/bundle/release/app-release.aab",
],
track: "internal",
skip_upload_apk: true,
skip_upload_aab: false,
skip_upload_metadata: true,
Expand Down

0 comments on commit ec10c95

Please sign in to comment.