From df332a13f18b204c04fe7987bf93b0fb8226e00d Mon Sep 17 00:00:00 2001 From: Martin Milata Date: Tue, 12 Nov 2024 16:58:40 +0100 Subject: [PATCH] ci: less verbose S3 upload --- .github/actions/ui-report/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/ui-report/action.yml b/.github/actions/ui-report/action.yml index 170e902602d..080cc5ab6ba 100644 --- a/.github/actions/ui-report/action.yml +++ b/.github/actions/ui-report/action.yml @@ -38,12 +38,12 @@ runs: shell: sh - name: Upload report run: | - aws s3 sync --no-progress ${{ github.run_id }} s3://data.trezor.io/dev/firmware/ui_report/${{ github.run_id }} + aws s3 sync --only-show-errors ${{ github.run_id }} s3://data.trezor.io/dev/firmware/ui_report/${{ github.run_id }} echo "[UI test report](https://data.trezor.io/dev/firmware/ui_report/${{ github.run_id }}/${{ inputs.model }}-${{ inputs.lang }}-${{ github.job }}/index.html)" >> $GITHUB_STEP_SUMMARY shell: sh - name: Upload test screen recording run: | - aws s3 sync --no-progress ci/ui_test_records s3://data.trezor.io/dev/firmware/ui_tests + aws s3 sync --only-show-errors ci/ui_test_records s3://data.trezor.io/dev/firmware/ui_tests # TODO: generate directory listing / autoindex shell: sh - uses: actions/upload-artifact@v4