From 10759de44ab174b999f7a659b6f355d07ded78ef Mon Sep 17 00:00:00 2001 From: Martin Kourim Date: Fri, 22 Nov 2024 13:52:00 +0100 Subject: [PATCH] feat(ci): update artifact upload arrow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Changed the arrow symbol in the names of upload steps in the regression and upgrade workflows from "↑" to "↟" for better clarity. --- .github/workflows/regression_reusable.yaml | 10 +++++----- .github/workflows/upgrade_reusable.yaml | 14 +++++++------- 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/regression_reusable.yaml b/.github/workflows/regression_reusable.yaml index 20067826d..4a31194f4 100644 --- a/.github/workflows/regression_reusable.yaml +++ b/.github/workflows/regression_reusable.yaml @@ -120,13 +120,13 @@ jobs: testrun_name_strip="$(echo "${{ inputs.testrun_name }}" | sed 's/[^a-zA-Z0-9_-]//g')" curl -s -X PUT --fail-with-body -u ${{ secrets.TCACHE_BASIC_AUTH }} "${{ secrets.TCACHE_URL }}/${testrun_name_strip}/${{ github.run_number }}/import" -F "junitxml=@testrun-report.xml" fi - - name: ↑ Upload testing artifacts on failure + - name: ↟ Upload testing artifacts on failure uses: actions/upload-artifact@v4 if: failure() with: name: testing-artifacts path: testing_artifacts.tar.xz - - name: ↑ Upload Allure results + - name: ↟ Upload Allure results uses: actions/upload-artifact@v4 # When using `always()`, you lose ability to manually cancel the workflow. # Use `success() || failure()` instead. @@ -134,13 +134,13 @@ jobs: with: name: allure-results path: allure-results.tar.xz - - name: ↑ Upload HTML report + - name: ↟ Upload HTML report uses: actions/upload-artifact@v4 if: success() || failure() with: name: testrun-report path: testrun-report.html - - name: ↑ Upload testrun files + - name: ↟ Upload testrun files uses: actions/upload-artifact@v4 if: success() || failure() with: @@ -151,7 +151,7 @@ jobs: testrun-report.xml deselected_tests.txt requirements_coverage.json - - name: ↑ Upload CLI coverage + - name: ↟ Upload CLI coverage uses: actions/upload-artifact@v4 if: success() || failure() with: diff --git a/.github/workflows/upgrade_reusable.yaml b/.github/workflows/upgrade_reusable.yaml index 641a80068..e3e60dea0 100644 --- a/.github/workflows/upgrade_reusable.yaml +++ b/.github/workflows/upgrade_reusable.yaml @@ -50,13 +50,13 @@ jobs: echo "::group::Script setup" ./.github/node_upgrade.sh echo "::endgroup::" - - name: ↑ Upload testing artifacts on failure + - name: ↟ Upload testing artifacts on failure uses: actions/upload-artifact@v4 if: failure() with: name: testing-artifacts path: testing_artifacts.tar.xz - - name: ↑ Upload Allure results for step1 + - name: ↟ Upload Allure results for step1 uses: actions/upload-artifact@v4 # When using `always()`, you lose ability to manually cancel the workflow. # Use `success() || failure()` instead. @@ -64,19 +64,19 @@ jobs: with: name: allure-results-step1 path: allure-results-step1.tar.xz - - name: ↑ Upload Allure results for step2 + - name: ↟ Upload Allure results for step2 uses: actions/upload-artifact@v4 if: success() || failure() with: name: allure-results-step2 path: allure-results-step2.tar.xz - - name: ↑ Upload Allure results for step3 + - name: ↟ Upload Allure results for step3 uses: actions/upload-artifact@v4 if: success() || failure() with: name: allure-results-step3 path: allure-results-step3.tar.xz - - name: ↑ Upload HTML reports + - name: ↟ Upload HTML reports uses: actions/upload-artifact@v4 if: success() || failure() with: @@ -85,7 +85,7 @@ jobs: testrun-report-step1.html testrun-report-step2.html testrun-report-step3.html - - name: ↑ Upload testrun files + - name: ↟ Upload testrun files uses: actions/upload-artifact@v4 if: success() || failure() with: @@ -93,7 +93,7 @@ jobs: path: | scheduling.log.xz errors_all.log - - name: ↑ Upload CLI coverage + - name: ↟ Upload CLI coverage uses: actions/upload-artifact@v4 if: success() || failure() with: