bitwarden-android/appveyor.yml

23 lines
1.3 KiB
YAML
Raw Normal View History

2018-04-16 05:00:21 +03:00
#install:
# - appveyor DownloadFile https://dist.nuget.org/win-x86-commandline/latest/nuget.exe
# - appveyor DownloadFile https://aka.ms/vs/15/release/vs_community.exe
# - vs_community.exe update --wait --quiet --norestart --installPath "C:\Program Files (x86)\Microsoft Visual Studio\2017\Community"
2017-02-11 09:13:03 +03:00
before_build:
- nuget restore
2017-02-14 05:57:11 +03:00
- IF DEFINED keystore_dec_secret nuget install secure-file -ExcludeVersion
- IF DEFINED google_services_dec_secret secure-file\tools\secure-file -decrypt src\Android\google-services.json.enc -secret %google_services_dec_secret%
2017-02-11 09:13:03 +03:00
after_build:
2018-01-11 06:10:32 +03:00
- ps: IF($env:keystore_dec_secret) { .\src\Android\ci-build-apks.ps1 }
2017-02-11 09:13:03 +03:00
on_success:
2017-02-14 05:57:11 +03:00
- IF DEFINED play_dec_secret secure-file\tools\secure-file -decrypt store\google\Publisher\play_creds.json.enc -secret %play_dec_secret%
2018-01-11 17:04:58 +03:00
- IF DEFINED play_dec_secret dotnet store\google\Publisher\bin\Release\netcoreapp2.0\Publisher.dll %APPVEYOR_BUILD_FOLDER%\store\google\Publisher\play_creds.json %APPVEYOR_BUILD_FOLDER%\com.x8bit.bitwarden-%APPVEYOR_BUILD_NUMBER%.apk alpha
2017-02-11 09:13:03 +03:00
artifacts:
2017-05-21 20:24:44 +03:00
- path: com.x8bit.bitwarden-%APPVEYOR_BUILD_NUMBER%.apk
2018-01-10 17:35:47 +03:00
- path: com.x8bit.bitwarden-fdroid-%APPVEYOR_BUILD_NUMBER%.apk
2017-05-21 20:24:44 +03:00
branches:
except:
2017-05-21 20:31:55 +03:00
- l10n_master
2017-11-21 00:32:23 +03:00
skip_tags: true
2018-01-11 17:04:58 +03:00
configuration: Release
2018-02-03 06:00:58 +03:00
image: Visual Studio 2017