Skip to content

Commit 2410fba

Browse files
committed
ci: Fixing ownership change before packaging for MUSL container
Signed-off-by: Tyler Erickson <[email protected]>
1 parent b431c84 commit 2410fba

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/meson.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -322,9 +322,13 @@ jobs:
322322
shell: bash
323323

324324
- name: Set ownership of executables to root:root
325-
if: ${{ matrix.config.os != 'windows-latest' }}
325+
if: ${{ matrix.config.os != 'windows-latest' }} && matrix.config.image == ''
326326
run: sudo chown -R root:root build
327327

328+
- name: Set ownership of executables to root:root (container)
329+
if: ${{ matrix.config.os != 'windows-latest' }} && matrix.config.image != ''
330+
run: chown -R root:root build
331+
328332
- name: Packing release
329333
env:
330334
ARCHIVE_EXT: ${{ matrix.config.release_extension }}

0 commit comments

Comments
 (0)