mirror of
https://github.com/bitwarden/mobile.git
synced 2024-11-07 09:20:04 +01:00
10 lines
383 B
PowerShell
10 lines
383 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 = "alpha";
|
|
|
|
dotnet $publisherPath $credsPath $aabPath $track
|