2020-06-05 20:51:57 +03:00
|
|
|
name: Build
|
|
|
|
|
2020-06-08 19:14:10 +03:00
|
|
|
on:
|
|
|
|
push:
|
2020-06-08 19:17:53 +03:00
|
|
|
branches-ignore:
|
|
|
|
- 'l10n_master'
|
|
|
|
- 'gh-pages'
|
2020-06-05 20:51:57 +03:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
|
|
|
|
android:
|
|
|
|
runs-on: windows-latest
|
|
|
|
|
|
|
|
steps:
|
2020-06-05 21:39:29 +03:00
|
|
|
- name: Set up NuGet
|
2020-06-05 21:40:44 +03:00
|
|
|
uses: nuget/setup-nuget@v1
|
2020-06-05 21:39:29 +03:00
|
|
|
with:
|
|
|
|
nuget-version: 'latest'
|
|
|
|
|
|
|
|
- name: Set up MSBuild
|
2020-06-05 21:40:44 +03:00
|
|
|
uses: microsoft/setup-msbuild@v1.0.0
|
2020-06-05 21:39:29 +03:00
|
|
|
|
2020-06-05 20:51:57 +03:00
|
|
|
- name: Print environment
|
|
|
|
run: |
|
2020-06-05 21:39:29 +03:00
|
|
|
nuget help
|
|
|
|
msbuild -version
|
2020-06-05 20:51:57 +03:00
|
|
|
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-06-08 19:14:10 +03:00
|
|
|
- name: Decrypt secrets
|
2020-06-08 19:17:53 +03:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2020-06-08 19:55:02 +03:00
|
|
|
run: ./.github/scripts/android/decrypt-secrets.ps1
|
2020-06-08 19:29:57 +03:00
|
|
|
shell: pwsh
|
2020-06-08 19:14:10 +03:00
|
|
|
env:
|
|
|
|
DECRYPT_FILE_PASSWORD: ${{ secrets.DECRYPT_FILE_PASSWORD }}
|
|
|
|
|
|
|
|
- name: Increment version
|
2020-06-08 19:17:53 +03:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2020-06-08 19:55:02 +03:00
|
|
|
run: ./.github/scripts/android/increment-version.ps1
|
2020-06-08 19:29:57 +03:00
|
|
|
shell: pwsh
|
2020-06-08 19:14:10 +03:00
|
|
|
|
2020-06-05 22:23:15 +03:00
|
|
|
- name: Restore packages
|
|
|
|
run: nuget restore
|
|
|
|
|
2020-06-08 20:19:44 +03:00
|
|
|
- name: Build
|
|
|
|
run: ./.github/scripts/android/build.ps1 -configuration Release
|
|
|
|
shell: pwsh
|
|
|
|
|
|
|
|
- name: Sign for Play Store
|
2020-06-08 19:17:53 +03:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2020-06-08 20:19:44 +03:00
|
|
|
run: ./.github/scripts/android/sign-play.ps1
|
2020-06-08 19:29:57 +03:00
|
|
|
shell: pwsh
|
2020-06-08 19:14:10 +03:00
|
|
|
env:
|
|
|
|
PLAY_KEYSTORE_PASSWORD: ${{ secrets.PLAY_KEYSTORE_PASSWORD }}
|
|
|
|
UPLOAD_KEYSTORE_PASSWORD: ${{ secrets.UPLOAD_KEYSTORE_PASSWORD }}
|
2020-06-05 20:51:57 +03:00
|
|
|
|
2020-06-08 20:19:44 +03:00
|
|
|
- name: Upload Play Store .aab artifact
|
2020-06-08 19:17:53 +03:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2020-06-08 19:14:10 +03:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: com.x8bit.bitwarden.aab
|
|
|
|
path: ./com.x8bit.bitwarden.aab
|
2020-06-05 20:51:57 +03:00
|
|
|
|
2020-06-08 20:19:44 +03:00
|
|
|
- name: Upload Play Store .apk artifact
|
2020-06-08 19:17:53 +03:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2020-06-08 19:14:10 +03:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: com.x8bit.bitwarden.apk
|
|
|
|
path: ./com.x8bit.bitwarden.apk
|
|
|
|
|
2020-06-08 20:19:44 +03:00
|
|
|
- name: Build and Sign for F-Droid Store
|
2020-06-08 19:17:53 +03:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2020-06-08 20:19:44 +03:00
|
|
|
run: ./.github/scripts/android/build-sign-fdroid.ps1
|
2020-06-08 19:29:57 +03:00
|
|
|
shell: pwsh
|
2020-06-08 19:14:10 +03:00
|
|
|
env:
|
|
|
|
FDROID_KEYSTORE_PASSWORD: ${{ secrets.FDROID_KEYSTORE_PASSWORD }}
|
|
|
|
|
2020-06-08 20:19:44 +03:00
|
|
|
- name: Upload F-Droid .apk artifact
|
2020-06-08 19:17:53 +03:00
|
|
|
if: github.ref == 'refs/heads/master'
|
2020-06-08 19:14:10 +03:00
|
|
|
uses: actions/upload-artifact@v2
|
|
|
|
with:
|
|
|
|
name: com.x8bit.bitwarden-fdroid.apk
|
|
|
|
path: ./com.x8bit.bitwarden-fdroid.apk
|
|
|
|
|
|
|
|
ios:
|
2020-06-05 20:51:57 +03:00
|
|
|
runs-on: macos-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Print environment
|
|
|
|
run: |
|
2020-06-05 21:39:29 +03:00
|
|
|
nuget help
|
|
|
|
msbuild -version
|
2020-06-05 20:51:57 +03:00
|
|
|
|
|
|
|
- name: Checkout repo
|
|
|
|
uses: actions/checkout@v2
|
|
|
|
|
2020-06-05 22:23:15 +03:00
|
|
|
- name: Restore packages
|
|
|
|
run: nuget restore
|
|
|
|
|
2020-06-05 20:51:57 +03:00
|
|
|
- name: Build app
|
2020-06-05 22:31:30 +03:00
|
|
|
run: msbuild ./src/iOS/iOS.csproj /verbosity:normal /p:Platform=iPhone /p:Configuration=Debug
|