Skip to content

Commit 7e078b9

Browse files
committed
Fix the path of the artifacts
1 parent 430366f commit 7e078b9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/macos-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ jobs:
1414
steps:
1515
- uses: actions/checkout@v2
1616
- name: Create Test Result Directory
17-
run: mkdir -p $TEST_REPORTS
17+
run: |
18+
mkdir -p tmp/test-results/
1819
- name: Run Unit Test - macOS
1920
run: |
2021
cd XCode
@@ -35,4 +36,4 @@ jobs:
3536
uses: actions/upload-artifact@v1
3637
with:
3738
name: test-results
38-
path: o/tmp/test-results
39+
path: tmp/test-results

0 commit comments

Comments
 (0)