Skip to content

Commit

Permalink
fix: apt has not a stable cli, set frontend to noninteractive to avoi…
Browse files Browse the repository at this point in the history
…d configurations
  • Loading branch information
mirkobrombin committed Jan 24, 2024
1 parent d144f27 commit 54ac40b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,10 @@ jobs:
rm -r /run/host${{ runner.tool_cache }}
- name: Install needed packages
run: apt update && apt install -y build-essential debhelper-compat dh-sequence-gnome libglib2.0-dev meson
run: |
export DEBIAN_FRONTEND=noninteractive
apt update
apt install -y build-essential debhelper-compat dh-sequence-gnome libglib2.0-dev meson
- name: Build debian package
run: |
Expand Down

0 comments on commit 54ac40b

Please sign in to comment.