Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 9191d77

Browse files
committedMar 4, 2024··
Move things to make it work
1 parent c797a5b commit 9191d77

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed
 

‎.github/workflows/build.yaml

+4-2
Original file line numberDiff line numberDiff line change
@@ -59,12 +59,14 @@ jobs:
5959
working-directory: ./connectedhomeip/
6060
run: scripts/run_in_build_env.sh "scripts/codepregen.py ./zzz_pregenerated/"
6161
- name: Create Matter SDK tar
62-
run: tar -caf ../connectedhomeip.tar.zst --exclude ./connectedhomeip/.environment --use-compress-program=zstdmt .
62+
run: |
63+
tar -caf ../connectedhomeip.tar.zst --exclude ./connectedhomeip/.environment --use-compress-program=zstdmt .
64+
mv ../connectedhomeip.tar.zst ./connectedhomeip.tar.zst
6365
- name: Store Matter SDK as artifact
6466
uses: actions/upload-artifact@v4
6567
with:
6668
name: matter-sdk-${{ github.run_id }}
67-
path: ../connectedhomeip.tar.zst
69+
path: ./connectedhomeip.tar.zst
6870

6971
build_linux_python_lib:
7072
name: Build Python wheels for Linux (${{ matrix.arch.name }})

0 commit comments

Comments
 (0)
Please sign in to comment.