From 288539b902e65789ca1ec8a2a166db9f8261f10d Mon Sep 17 00:00:00 2001 From: Philipp Crocoll Date: Sat, 5 Jul 2025 11:09:55 +0200 Subject: [PATCH] make output more verbose --- .github/workflows/release.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2c819820..31302b84 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -89,6 +89,9 @@ jobs: - name: Install NuGet dependencies run: make nuget Flavor=${{ matrix.flavor }} + - name: List apks + run: find . -type f -name "*.apk" + - name: Build APK (net) env: KeyStore: "${{ github.workspace }}/kp2a.keystore" @@ -101,7 +104,10 @@ jobs: run: | make ${{ matrix.target }} Configuration=Release Flavor=${{ matrix.flavor }} - + + - name: List apks + run: find . -type f -name "*.apk" + - name: Archive production artifacts uses: actions/upload-artifact@v4 with: @@ -110,6 +116,9 @@ jobs: src/keepass2android-app/bin/Release/net8.0-android/publish/*.apk src/keepass2android-app/bin/Release/net8.0-android/*/publish/*.apk + - name: List apks + run: find . -type f -name "*.apk" + #- name: Upload APK to GitHub Release # uses: softprops/action-gh-release@v2 # if: github.ref_type == 'tag'