From 8f287666e77ce7a52da1509f675ea451e202c08f Mon Sep 17 00:00:00 2001 From: Clare So Date: Fri, 1 Nov 2024 11:23:48 -0400 Subject: [PATCH] Output result to Github Actions job page --- .github/workflows/testrail-backup.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.github/workflows/testrail-backup.yml b/.github/workflows/testrail-backup.yml index 70b38b5..3bf3803 100644 --- a/.github/workflows/testrail-backup.yml +++ b/.github/workflows/testrail-backup.yml @@ -12,6 +12,7 @@ env: # Focus for iOS: 27 # Firefox for Android: 13 # Focus for Android:48 + STORAGE_URL_PREFIX: https://storage.googleapis.com jobs: test: @@ -75,4 +76,9 @@ jobs: uses: google-github-actions/upload-cloud-storage@v2 with: path: ${{ env.DEFAULT_DIR }}/${{ env.filename }}.tgz - destination: ${{ env.BUCKET }} \ No newline at end of file + destination: ${{ env.BUCKET }} + + - name: Output URL to Github Actions job page + run: | + echo "[Download CSV files](${{ env.STORAGE_URL_PREFIX }}/${{ env.BUCKET }}/${{ env.filename }}.tgz)" >> $GITHUB_STEP_SUMMARY + echo "[TestRail configuration file](https://github.com/mozilla-mobile/testops-tools/blob/main/backup-tools/testrail-import.cfg)" >> $GITHUB_STEP_SUMMARY \ No newline at end of file