mirror of
https://github.com/bitwarden/android.git
synced 2024-11-01 07:35:52 +03:00
9 lines
339 B
PowerShell
9 lines
339 B
PowerShell
$rootPath = $env:GITHUB_WORKSPACE;
|
|
$homePath = $env:HOME;
|
|
|
|
$publisherPath = $($rootPath + "/store/google/Publisher/bin/Release/netcoreapp2.0/Publisher.dll");
|
|
$credsPath = $($homePath + "/secrets/play_creds.json");
|
|
$aabPath = $($rootPath + "/com.x8bit.bitwarden.aab");
|
|
$track = "alpha";
|
|
|
|
dotnet $publisherPath $credsPath $aabPath $track
|