From 690fefbffb3b7fd32c4ddc6ce410e7eabd049bbd Mon Sep 17 00:00:00 2001 From: EnumDev Date: Sat, 18 Apr 2026 19:12:11 +0300 Subject: [PATCH] Install build-essential in publish workflow job --- .github/workflows/ci_cd.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 7a725d4..f9d9e1a 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -38,7 +38,7 @@ jobs: - name: Upgrade packages run: sudo apt update -y && sudo apt upgrade -y - name: Download and install dependencies - run: sudo apt install -y make debhelper golang libgl-dev libx11-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev + run: sudo apt install -y build-essential make debhelper golang libgl-dev libx11-dev libxcursor-dev libxi-dev libxinerama-dev libxrandr-dev libxxf86vm-dev - name: Build deb package run: dpkg-buildpackage -b - name: Read changelog