From 582416e6860dae6ed98e04b9760e61ff47770938 Mon Sep 17 00:00:00 2001 From: Echo Date: Mon, 27 Apr 2026 23:01:39 +0000 Subject: [PATCH] Fix CI workflow - correct .deb path (project root, not target/package) --- .gitea/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 3c1e995..7f516d7 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -253,8 +253,8 @@ jobs: - name: Verify package run: | - ls -la target/package/*.deb - dpkg-deb -I target/package/linux-patch-manager_*.deb + ls -la *.deb + dpkg-deb -I linux-patch-manager_*.deb - name: Create Gitea Release (tags only) if: startsWith(github.ref, 'refs/tags/v') @@ -263,7 +263,7 @@ jobs: VERSION=$(grep '^version' Cargo.toml | head -1 | sed 's/.*=.*"\(.*\)"/\1/') REPO="${GITHUB_REPOSITORY:-echo/linux_patch_manager}" REF_NAME="${GITHUB_REF_NAME:-v${VERSION}}" - DEB=$(ls target/package/linux-patch-manager_*.deb) + DEB=$(ls linux-patch-manager_*.deb) python3 scripts/create-release.py \ --repo "${REPO}" \ --tag "${REF_NAME}" \