Skip to content

Commit c761902

Browse files
Remove parent directory reference from tar command
1 parent e29824d commit c761902

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,9 @@ jobs:
134134
name: macos-installable
135135
path: ../swift-wasm-DEVELOPMENT-SNAPSHOT-osx.tar.gz
136136
- name: Pack test results
137-
run: tar cJf swift-test-results.tar.gz ../target-build/*/swift-macosx-x86_64/swift-test-results
137+
run: |
138+
cd ../
139+
tar cJf swift-test-results.tar.gz target-build/*/swift-macosx-x86_64/swift-test-results
138140
- name: Upload test results
139141
uses: actions/upload-artifact@v1
140142
with:

0 commit comments

Comments
 (0)