make sure AndroidManifest.xml exists before running nuget

This commit is contained in:
Philipp Crocoll
2025-07-05 07:12:17 +02:00
parent 5e418e2b1b
commit b961ae1b33
2 changed files with 11 additions and 3 deletions

View File

@@ -313,6 +313,10 @@ jobs:
run: |
dotnet workload update
- name: Select the manifest
run: |
make manifestlink Flavor=Net
- name: Install NuGet dependencies (net)
run: make nuget Flavor=Net
@@ -331,6 +335,10 @@ jobs:
path: |
src/keepass2android/bin/*/*-Signed.apk
- name: Select the manifest
run: |
make manifestlink Flavor=NoNet
- name: Install NuGet dependencies (nonet)
run: make nuget Flavor=NoNet

View File

@@ -83,13 +83,13 @@ jobs:
run: |
dotnet workload update
- name: Install NuGet dependencies
run: make nuget Flavor=${{ matrix.flavor }}
- name: Select the manifest
run: |
make manifestlink Flavor=${{ matrix.flavor }}
- name: Install NuGet dependencies
run: make nuget Flavor=${{ matrix.flavor }}
- name: Build APK (net)
env:
KeyStore: "${{ github.workspace }}/kp2a.keystore"