[ANDROID] Update wear os test lane

This commit is contained in:
Kamil Gurgul
2026-04-16 07:22:47 +02:00
parent 10dd2b9f59
commit 2050848498
2 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -93,7 +93,7 @@ jobs:
if: matrix.format.type == 'aab'
run: |
AAB_PATH=$(ls wearOsApp/build/outputs/bundle/release/*.aab | head -n 1)
fastlane android internal aab:"$AAB_PATH" json_key:play-service-account.json
fastlane android internal aab:"$AAB_PATH" json_key:play-service-account.json track:wear:internal
release:
needs: build
permissions:
+2 -2
View File
@@ -4,7 +4,7 @@ platform :android do
desc "Upload AAB to Google Play internal testing track"
lane :internal do |options|
upload_to_play_store(
track: 'internal',
track: options[:track] || 'internal',
aab: options[:aab],
package_name: 'com.kgurgul.cpuinfo',
json_key: options[:json_key],
@@ -16,4 +16,4 @@ platform :android do
release_status: 'draft'
)
end
end
end