mirror of
https://github.com/meshtastic/Meshtastic-Android.git
synced 2026-04-20 22:23:37 +00:00
chore(ci): Use wildcard for APK paths in release workflow (#4622)
This commit is contained in:
parent
d8f08c3c96
commit
67762256c8
1 changed files with 4 additions and 4 deletions
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
|
|
@ -189,7 +189,7 @@ jobs:
|
|||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: google-apk
|
||||
path: app/build/outputs/apk/google/release/*.apk
|
||||
path: app/build/outputs/apk/**/*.apk
|
||||
retention-days: 1
|
||||
|
||||
- name: Attest Google artifacts provenance
|
||||
|
|
@ -198,7 +198,7 @@ jobs:
|
|||
with:
|
||||
subject-path: |
|
||||
app/build/outputs/bundle/googleRelease/app-google-release.aab
|
||||
app/build/outputs/apk/google/release/*.apk
|
||||
app/build/outputs/apk/**/*.apk
|
||||
|
||||
release-fdroid:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
@ -254,13 +254,13 @@ jobs:
|
|||
uses: actions/upload-artifact@v6
|
||||
with:
|
||||
name: fdroid-apk
|
||||
path: app/build/outputs/apk/fdroid/release/*.apk
|
||||
path: app/build/outputs/apk/**/*.apk
|
||||
retention-days: 1
|
||||
|
||||
- name: Attest F-Droid APK provenance
|
||||
uses: actions/attest-build-provenance@v3
|
||||
with:
|
||||
subject-path: app/build/outputs/apk/fdroid/release/*.apk
|
||||
subject-path: app/build/outputs/apk/**/*.apk
|
||||
|
||||
github-release:
|
||||
runs-on: ubuntu-latest
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue