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

View File

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