Skip to content

Commit 2ffa2a7

Browse files
authored
ci: fix zip root (#157)
1 parent 943cf97 commit 2ffa2a7

1 file changed

Lines changed: 3 additions & 2 deletions

File tree

.github/workflows/ffi-builds.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,9 @@ jobs:
142142
- name: Zip artifact (Unix)
143143
if: ${{ matrix.os != 'windows-latest' }}
144144
run: |
145-
zip ${{ github.workspace }}/${{ matrix.name }}.zip target/${{ matrix.target }}/release/${{ matrix.dylib }} \
146-
livekit-ffi/include/livekit_ffi.h
145+
cp livekit-ffi/include/livekit_ffi.h target/${{ matrix.target }}/release/
146+
cd target/${{ matrix.target }}/release/
147+
zip ${{ github.workspace }}/${{ matrix.name }}.zip ${{ matrix.dylib }} livekit_ffi.h
147148
148149
- name: Zip artifact (Windows)
149150
if: ${{ matrix.os == 'windows-latest' }}

0 commit comments

Comments
 (0)