Skip to content

Commit

Permalink
no sudo part 1
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-bennett authored May 22, 2024
1 parent 1976607 commit 3b334ee
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,17 @@ jobs:
uses: dtolnay/rust-toolchain@stable

- name: Install dependencies (Ubuntu only)
if: matrix.platform == 'ubuntu-20.04' || matrix.platform == 'ARM64'
if: matrix.platform == 'ubuntu-20.04'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install dependencies (ARM only)
if: matrix.platform == 'ARM64'
run: |
apt-get update
apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf
- name: Install frontend dependencies
run: pnpm install

Expand Down

0 comments on commit 3b334ee

Please sign in to comment.