Merge pull request #488 from chirayudesai/gh-actions
gh-actions: Upload debug apks as artifacts
This commit is contained in:
commit
594d5e17b5
1 changed files with 9 additions and 0 deletions
9
.github/workflows/client.yml
vendored
9
.github/workflows/client.yml
vendored
|
@ -33,3 +33,12 @@ jobs:
|
||||||
|
|
||||||
- name: Build
|
- name: Build
|
||||||
run: ./gradlew compileDebugAndroidTestSources check assemble ktlintCheck
|
run: ./gradlew compileDebugAndroidTestSources check assemble ktlintCheck
|
||||||
|
|
||||||
|
- name: Upload APKs
|
||||||
|
uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: seedvault-${{ github.sha }}-apks
|
||||||
|
path: |
|
||||||
|
app/build/outputs/apk/debug/app-debug.apk
|
||||||
|
contactsbackup/build/outputs/apk/debug/contactsbackup-debug.apk
|
||||||
|
storage/demo/build/outputs/apk/debug/demo-debug.apk
|
||||||
|
|
Loading…
Reference in a new issue