mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
93cd31018e
publish directly to internal test track to skip play store approval process for internal testers (artifact can then be manually promoted to alpha > beta > prod like before). This should bring the testing experience up to speed with TestFlight for iOS (i.e. push code > ci build > immediate availability)
9 lines
386 B
PowerShell
9 lines
386 B
PowerShell
$rootPath = $env:GITHUB_WORKSPACE;
|
|
$homePath = Resolve-Path "~" | Select-Object -ExpandProperty Path;
|
|
|
|
$publisherPath = $($rootPath + "/store/google/Publisher/bin/Release/netcoreapp2.0/Publisher.dll");
|
|
$credsPath = $($homePath + "/secrets/play_creds.json");
|
|
$aabPath = $($rootPath + "/com.x8bit.bitwarden.aab");
|
|
$track = "internal";
|
|
|
|
dotnet $publisherPath $credsPath $aabPath $track
|