Compare commits

...

2 Commits

Author SHA1 Message Date
Philipp Crocoll
51089c6b98 change build artifact release paths. make archive name depend on matrix variables. 2025-07-05 08:16:30 +02:00
Philipp Crocoll
cf18fcf91c remove distclean from build 2025-07-05 08:15:58 +02:00
2 changed files with 5 additions and 5 deletions

View File

@@ -361,5 +361,3 @@ jobs:
path: |
src/keepass2android/bin/*/*-Signed.apk
- name: Perform "make distclean"
run: make distclean

View File

@@ -105,14 +105,16 @@ jobs:
- name: List files
shell: bash
run: |
ls src/keepass2android-app/bin/**/*.*
ls src/keepass2android-app/bin/Release/net8.0-android/publish/*.apk
ls src/keepass2android-app/bin/Release/net8.0-android/*/publish/*.apk
- name: Archive production artifacts
uses: actions/upload-artifact@v4
with:
name: signed APK (built on ${{ github.job }})
name: keepass2android_${{ matrix.target }}_${{ matrix.flavor }}
path: |
src/keepass2android-app/bin/Release/**/*.apk
src/keepass2android-app/bin/Release/net8.0-android/publish/*.apk
src/keepass2android-app/bin/Release/net8.0-android/*/publish/*.apk
#- name: Upload APK to GitHub Release
# uses: softprops/action-gh-release@v2