Skip to content

Commit

Permalink
ci: adds sudo to linux commands
Browse files Browse the repository at this point in the history
  • Loading branch information
sardylan committed Sep 9, 2024
1 parent e81fe00 commit d7be577
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/builds-linux.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Linux Builds
name: "Builds - Linux"
on:
push:
branches:
Expand Down Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v4
- name: Install required packages
if: matrix.packages != ''
run: apt install --assume-yes ${{ matrix.packages }}
run: sudo apt install --assume-yes ${{ matrix.packages }}
- name: Configure cargo linker to use
if: matrix.linker != ''
run: echo -ne '[target.aarch64-unknown-linux-gnu]\nlinker = ${{ matrix.linker }}' > .cargo/config
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/builds-macos.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: MacOS Builds
name: "Builds - MacOS"
on:
push:
branches:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/builds-windows.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Windows Builds
name: "Builds - Windows"
on:
push:
branches:
Expand Down

0 comments on commit d7be577

Please sign in to comment.