1
0
mirror of https://github.com/bitwarden/mobile synced 2025-12-25 04:33:36 +00:00

break steps out a bit more

This commit is contained in:
Kyle Spearrin
2020-06-08 16:04:04 -04:00
parent 36efc0c877
commit fa6d2a3080
4 changed files with 37 additions and 46 deletions

View File

@@ -43,7 +43,7 @@ jobs:
- name: Restore packages
run: nuget restore
- name: Build
- name: Build for Play Store
run: ./.github/scripts/android/build.ps1 -configuration Release
shell: pwsh
@@ -69,9 +69,20 @@ jobs:
name: com.x8bit.bitwarden.apk
path: ./com.x8bit.bitwarden.apk
- name: Build and Sign for F-Droid Store
- name: Clean for F-Droid
run: ./.github/scripts/android/clean-fdroid.ps1
shell: pwsh
- name: Restore packages
run: nuget restore
- name: Build for F-Droid
run: ./.github/scripts/android/build.ps1 -configuration FDroid
shell: pwsh
- name: Sign for F-Droid
if: github.ref == 'refs/heads/master'
run: ./.github/scripts/android/build-sign-fdroid.ps1
run: ./.github/scripts/android/sign-fdroid.ps1
shell: pwsh
env:
FDROID_KEYSTORE_PASSWORD: ${{ secrets.FDROID_KEYSTORE_PASSWORD }}