Skip to content

Commit

Permalink
ci: Adding step to set executable ownership to root:root
Browse files Browse the repository at this point in the history
Setting the ownership to root:root to try and resolve an issue reported by a user when trying to download a firmware to their drive.

Signed-off-by: Tyler Erickson <tyler.erickson@seagate.com>
  • Loading branch information
vonericsen committed Oct 15, 2024
1 parent dd79eb1 commit 876f2c4
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/meson.yml
Original file line number Diff line number Diff line change
Expand Up @@ -260,6 +260,11 @@ jobs:
meson setup build -Dprefix=/ -Dmandir=/man -Dbindir=/ ${{ matrix.config.meson_opts }} --buildtype=release
meson install -C build
- name: Set ownership of executables to root:root
if: ${{ matrix.config.os != 'windows-latest' }}
run: sudo chown root:root builddir/openSeaChest_*


- name: Packing release
env:
ARCHIVE_EXT: ${{ matrix.config.release_extension }}
Expand Down

0 comments on commit 876f2c4

Please sign in to comment.