Skip to content

Commit 445e528

Browse files
committed
fix a directory not found error in debug workflow
1 parent d06f3c6 commit 445e528

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

.github/workflows/multiple_mltbx.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,8 +216,9 @@ jobs:
216216
with:
217217
release: R2025a
218218
- name: Decompress Artifacts with full dependencies
219-
working-directory: http_grpc
220219
run: |
220+
mkdir http_grpc
221+
cd http_grpc
221222
mv artifacts-downloaded/*/*httpgrpc*.tar.gz .
222223
tar -xzvf otel-matlab-httpgrpc-ubuntu.tar.gz
223224
tar -xzvf otel-matlab-httpgrpc-macos-13.tar.gz
@@ -235,8 +236,9 @@ jobs:
235236
with:
236237
command: packageMatlabInterface
237238
- name: Decompress Artifacts with minimal dependencies
238-
working-directory: http_only
239239
run: |
240+
mkdir http_only
241+
cd http_only
240242
mv artifacts-downloaded/*/*httponly*.tar.gz .
241243
tar -xzvf otel-matlab-httponly-ubuntu.tar.gz
242244
tar -xzvf otel-matlab-httponly-macos-13.tar.gz

0 commit comments

Comments
 (0)