bitwarden-android/.github/scripts/android/deploy-play.ps1

10 lines
383 B
PowerShell
Raw Normal View History

2020-06-09 17:21:46 +03:00
$rootPath = $env:GITHUB_WORKSPACE;
2020-06-09 20:09:00 +03:00
$homePath = Resolve-Path "~" | Select-Object -ExpandProperty Path;
2020-06-09 17:21:46 +03:00
$publisherPath = $($rootPath + "/store/google/Publisher/bin/Release/netcoreapp2.0/Publisher.dll");
$credsPath = $($homePath + "/secrets/play_creds.json");
$aabPath = $($rootPath + "/com.x8bit.bitwarden.aab");
2020-06-09 17:21:46 +03:00
$track = "alpha";
dotnet $publisherPath $credsPath $aabPath $track