Skip to content

Commit

Permalink
fix(workflow): update vorpal.yaml to dynamically find and set permiss…
Browse files Browse the repository at this point in the history
…ions for bubblewrap

- Added logic to dynamically find the path of bubblewrap using `which -a bwrap | head -n 1`
- Updated the script to set the correct permissions for the dynamically found bubblewrap path
- Added a command to print the bubblewrap version for verification
  • Loading branch information
erikreinert committed Oct 2, 2024
1 parent 3f4374b commit 08f72f8
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/vorpal.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,10 @@ jobs:
gettext \
help2man \
zlib1g-dev
sudo chmod u+s /usr/bin/bubblewrap
export BWRAP_PATH=$(which -a bwrap | head -n 1)
echo $BWRAP_PATH
sudo chmod u+s $BWRAP_PATH
$BWRAP_PATH --version
- uses: actions/checkout@v4

Expand Down

0 comments on commit 08f72f8

Please sign in to comment.