1
0
mirror of https://github.com/bitwarden/mobile.git synced 2024-06-21 09:45:05 +02:00

deploy to play store

This commit is contained in:
Kyle Spearrin 2020-06-09 10:21:46 -04:00
parent f40576c39d
commit a05e037308
3 changed files with 15 additions and 0 deletions

View File

@ -19,3 +19,4 @@ Invoke-Expression `
"& `"$decryptSecretPath`" -filename $($appKeystoreFdroidFilename + ".gpg") -output $($appKeystoreFdroidPath)"
Invoke-Expression `
"& `"$decryptSecretPath`" -filename $($googleServicesFilename + ".gpg") -output $($googleServicesPath)"
Invoke-Expression "& `"$decryptSecretPath`" -filename play_creds.json.gpg"

View File

@ -0,0 +1,9 @@
$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

View File

@ -100,6 +100,11 @@ jobs:
name: com.x8bit.bitwarden-fdroid.apk
path: ./com.x8bit.bitwarden-fdroid.apk
- name: Deploy to Play Store
if: github.ref == 'refs/heads/master'
run: ./.github/scripts/android/deploy-play.ps1
shell: pwsh
ios:
runs-on: macos-latest