We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b431c84 commit 2410fbaCopy full SHA for 2410fba
.github/workflows/meson.yml
@@ -322,9 +322,13 @@ jobs:
322
shell: bash
323
324
- name: Set ownership of executables to root:root
325
- if: ${{ matrix.config.os != 'windows-latest' }}
+ if: ${{ matrix.config.os != 'windows-latest' }} && matrix.config.image == ''
326
run: sudo chown -R root:root build
327
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
+
332
- name: Packing release
333
env:
334
ARCHIVE_EXT: ${{ matrix.config.release_extension }}
0 commit comments