|
@@ -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
|