Skip to content

Commit

Permalink
run install scripts as sudo
Browse files Browse the repository at this point in the history
  • Loading branch information
lionkor committed Dec 4, 2023
1 parent fff1f56 commit f9d0233
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
submodules: "recursive"

- name: Install Dependencies
run: ./scripts/debian/1-install-deps.sh
run: sudo ./scripts/debian/1-install-deps.sh

- name: Create Build Environment
working-directory: ${{github.workspace}}/build-linux
Expand Down Expand Up @@ -49,7 +49,7 @@ jobs:
path: ${{github.workspace}}

- name: Install Runtime Dependencies
run: ./scripts/debian/4-install-runtime-deps.sh
run: sudo ./scripts/debian/4-install-runtime-deps.sh

- name: Test
working-directory: ${{github.workspace}}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
submodules: "recursive"

- name: Install Dependencies
run: ./scripts/debian/1-install-deps.sh
run: sudo ./scripts/debian/1-install-deps.sh

- name: Create Build Environment
working-directory: ${{github.workspace}}/build-linux
Expand Down

0 comments on commit f9d0233

Please sign in to comment.