-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(ci): update artifact upload arrow
- Changed the arrow symbol in the names of upload steps in the regression and upgrade workflows from "↑" to "↟" for better clarity.
- Loading branch information
Showing
2 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,27 +120,27 @@ 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 "[email protected]" | ||
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. | ||
if: success() || failure() | ||
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: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters