Skip to content

Commit

Permalink
update path
Browse files Browse the repository at this point in the history
  • Loading branch information
bwees committed Aug 27, 2024
1 parent 7daa155 commit 09efa25
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,12 +129,13 @@ jobs:
fi
- name: Fastlane Build [Android]
run: fastlane android build
run: |
fastlane android build
- uses: actions/upload-artifact@v4
with:
name: app-bundle.aab
path: ./android/app/build/outputs/bundles/debug/mobile-debug.aab
path: ./android/app/build/outputs/bundle/release/app-release.aab

- name: Upload to Play Store [Android]
run: fastlane android upload
Expand Down
2 changes: 1 addition & 1 deletion fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ platform :android do
lane :upload do
upload_to_play_store(
track: 'internal',
apk: './android/app/build/outputs/bundles/debug/mobile-debug.aab',
apk: './android/app/build/outputs/bundle/release/app-release.aab',
json_key_data: Base64.decode64(ENV['GOOGLE_PLAY_KEY']),
package_name: ENV['PACKAGE_NAME']
)
Expand Down

0 comments on commit 09efa25

Please sign in to comment.