add upload apk to release in workflow
This commit is contained in:
10
.github/workflows/release-net.yml
vendored
10
.github/workflows/release-net.yml
vendored
@@ -104,10 +104,18 @@ jobs:
|
|||||||
MyAndroidSigningKeyPass: ${{ secrets.KEY_PASSWORD }}
|
MyAndroidSigningKeyPass: ${{ secrets.KEY_PASSWORD }}
|
||||||
run: |
|
run: |
|
||||||
make apk Flavor=Net
|
make apk Flavor=Net
|
||||||
|
ls src/keepass2android-app/bin/**/*.*
|
||||||
|
|
||||||
- name: Archive production artifacts (net)
|
- name: Archive production artifacts (net)
|
||||||
uses: actions/upload-artifact@v4
|
uses: actions/upload-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: signed APK ('net' built on ${{ github.job }})
|
name: signed APK ('net' built on ${{ github.job }})
|
||||||
path: |
|
path: |
|
||||||
src/keepass2android-app/bin/*/*-Signed.apk
|
src/keepass2android-app/bin/Release/*-Signed.apk
|
||||||
|
|
||||||
|
- name: Upload APK to GitHub Release
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
if: github.ref_type == 'tag'
|
||||||
|
with:
|
||||||
|
files: |
|
||||||
|
src/keepass2android-app/bin/Release/*-Signed.apk
|
||||||
Reference in New Issue
Block a user