We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a00fc80 commit 7a6e2cdCopy full SHA for 7a6e2cd
.github/actions/run-ios-e2e-tests/action.yml
@@ -30,7 +30,9 @@ runs:
30
31
echo "Creating output directory $test_output_directory"
32
mkdir "$test_output_directory"
33
+
34
echo "TEST_OUTPUT_DIRECTORY=$test_output_directory" >> $GITHUB_ENV
35
+ echo "TEST_NAME_SANITIZED=$test_name_sanitized" >> $GITHUB_ENV
36
shell: bash
37
env:
38
TEST_NAME: ${{ inputs.test_name }}
@@ -73,7 +75,7 @@ runs:
73
75
if: always()
74
76
uses: actions/upload-artifact@v4
77
with:
- name: test-results
78
+ name: ${{ env.TEST_NAME_SANITIZED }}-test-results
79
path: |
80
ios/${{ env.TEST_OUTPUT_DIRECTORY }}/junit-test-report/junit.xml
81
ios/${{ env.TEST_OUTPUT_DIRECTORY }}/xcode-test-report.xcresult
0 commit comments