build process: add previously missing change; fix error in build.yml, more verbose output in release.yml

This commit is contained in:
Philipp Crocoll
2025-07-05 13:34:01 +02:00
parent ae2cfde897
commit 584feabe44
3 changed files with 45 additions and 53 deletions

View File

@@ -280,7 +280,7 @@ jobs:
minimum-size: 8GB
- name: Add dotnetbuild to PATH
uses: microsoft/setup-dotnetbuild@v2
uses: microsoft/setup-msbuild@v2
# If we want to also have nmake, use this instead
#uses: ilammy/msvc-dev-cmd@v1

View File

@@ -78,13 +78,27 @@ jobs:
run: |
make java
- name: List apks
run: find . -type f -name "*.apk"
shell: bash
- name: Update dotnet workloads
run: |
dotnet workload update
- name: List apks
run: find . -type f -name "*.apk"
shell: bash
- name: Select the manifest
run: |
make manifestlink Flavor=${{ matrix.flavor }}
- name: List apks
run: find . -type f -name "*.apk"
shell: bash
- name: Install NuGet dependencies
run: make nuget Flavor=${{ matrix.flavor }}