Merge pull request #8046 from nextcloud/GrabEspressoResults

Grab Espresso results and apk
This commit is contained in:
Andy Scherzinger 2021-02-25 16:06:38 +01:00 committed by GitHub
commit dab5ce0f7c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 14 additions and 0 deletions

View File

@ -43,3 +43,17 @@ jobs:
GIT_TOKEN: ${{ secrets.GIT_TOKEN }}
run:
scripts/uploadReport.sh "$LOG_USERNAME" "$LOG_PASSWORD" ${{github.event.number}} "${{ matrix.color }}-${{ matrix.scheme }}" "Screenshot" ${{github.event.number}} "$GIT_USERNAME" "$GIT_TOKEN"
- name: Archive Espresso results
uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
name: Report-${{ matrix.color }}-${{ matrix.scheme }}
path: build/reports
retention-days: 5
- name: Archive apk
uses: actions/upload-artifact@v2
if: ${{ always() }}
with:
name: Nextcloud-APK
path: build/outputs/apk/**/**/gplay*.apk
retention-days: 5