From 2ac40076f57875ed4c32047b382db847d845725a Mon Sep 17 00:00:00 2001 From: Draco Lunaris <331325+Draco-Lunaris@users.noreply.github.com> Date: Sun, 31 May 2026 02:08:36 -0500 Subject: [PATCH] ci: add debhelper dependency and contents:write permission - Add debhelper to system dependencies for dpkg-buildpackage - Add permissions: contents: write for GitHub Release creation - Fixes Build & Release job failures on tag push Co-authored-by: git-echo --- .github/workflows/ci.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3096a2d..4258825 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -10,6 +10,9 @@ on: env: CARGO_TERM_COLOR: always +permissions: + contents: write + jobs: fmt: name: Rust Format @@ -79,7 +82,7 @@ jobs: - uses: dtolnay/rust-toolchain@stable - uses: Swatinem/rust-cache@v2 - name: Install system dependencies - run: sudo apt-get update && sudo apt-get install -y build-essential libsystemd-dev pkg-config libssl-dev dpkg-dev + run: sudo apt-get update && sudo apt-get install -y build-essential libsystemd-dev pkg-config libssl-dev dpkg-dev debhelper - name: Build .deb package run: | . "$HOME/.cargo/env"