Skip to content

Commit b166964

Browse files
authored
Merge pull request #2791 from IntersectMBO/double_arrow_ci
feat(ci): update artifact upload arrow
2 parents 5ca4898 + 10759de commit b166964

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

.github/workflows/regression_reusable.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -120,27 +120,27 @@ jobs:
120120
testrun_name_strip="$(echo "${{ inputs.testrun_name }}" | sed 's/[^a-zA-Z0-9_-]//g')"
121121
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]"
122122
fi
123-
- name: Upload testing artifacts on failure
123+
- name: Upload testing artifacts on failure
124124
uses: actions/upload-artifact@v4
125125
if: failure()
126126
with:
127127
name: testing-artifacts
128128
path: testing_artifacts.tar.xz
129-
- name: Upload Allure results
129+
- name: Upload Allure results
130130
uses: actions/upload-artifact@v4
131131
# When using `always()`, you lose ability to manually cancel the workflow.
132132
# Use `success() || failure()` instead.
133133
if: success() || failure()
134134
with:
135135
name: allure-results
136136
path: allure-results.tar.xz
137-
- name: Upload HTML report
137+
- name: Upload HTML report
138138
uses: actions/upload-artifact@v4
139139
if: success() || failure()
140140
with:
141141
name: testrun-report
142142
path: testrun-report.html
143-
- name: Upload testrun files
143+
- name: Upload testrun files
144144
uses: actions/upload-artifact@v4
145145
if: success() || failure()
146146
with:
@@ -151,7 +151,7 @@ jobs:
151151
testrun-report.xml
152152
deselected_tests.txt
153153
requirements_coverage.json
154-
- name: Upload CLI coverage
154+
- name: Upload CLI coverage
155155
uses: actions/upload-artifact@v4
156156
if: success() || failure()
157157
with:

.github/workflows/upgrade_reusable.yaml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -50,33 +50,33 @@ jobs:
5050
echo "::group::Script setup"
5151
./.github/node_upgrade.sh
5252
echo "::endgroup::"
53-
- name: Upload testing artifacts on failure
53+
- name: Upload testing artifacts on failure
5454
uses: actions/upload-artifact@v4
5555
if: failure()
5656
with:
5757
name: testing-artifacts
5858
path: testing_artifacts.tar.xz
59-
- name: Upload Allure results for step1
59+
- name: Upload Allure results for step1
6060
uses: actions/upload-artifact@v4
6161
# When using `always()`, you lose ability to manually cancel the workflow.
6262
# Use `success() || failure()` instead.
6363
if: success() || failure()
6464
with:
6565
name: allure-results-step1
6666
path: allure-results-step1.tar.xz
67-
- name: Upload Allure results for step2
67+
- name: Upload Allure results for step2
6868
uses: actions/upload-artifact@v4
6969
if: success() || failure()
7070
with:
7171
name: allure-results-step2
7272
path: allure-results-step2.tar.xz
73-
- name: Upload Allure results for step3
73+
- name: Upload Allure results for step3
7474
uses: actions/upload-artifact@v4
7575
if: success() || failure()
7676
with:
7777
name: allure-results-step3
7878
path: allure-results-step3.tar.xz
79-
- name: Upload HTML reports
79+
- name: Upload HTML reports
8080
uses: actions/upload-artifact@v4
8181
if: success() || failure()
8282
with:
@@ -85,15 +85,15 @@ jobs:
8585
testrun-report-step1.html
8686
testrun-report-step2.html
8787
testrun-report-step3.html
88-
- name: Upload testrun files
88+
- name: Upload testrun files
8989
uses: actions/upload-artifact@v4
9090
if: success() || failure()
9191
with:
9292
name: testrun-files
9393
path: |
9494
scheduling.log.xz
9595
errors_all.log
96-
- name: Upload CLI coverage
96+
- name: Upload CLI coverage
9797
uses: actions/upload-artifact@v4
9898
if: success() || failure()
9999
with:

0 commit comments

Comments
 (0)