Private
Public Access
1
0

Fix CI workflow - correct .deb path (project root, not target/package)
Some checks failed
CI Pipeline / Rust Format Check (push) Successful in 3s
CI Pipeline / Clippy Lints (push) Successful in 45s
CI Pipeline / Rust Unit Tests (push) Successful in 1m1s
CI Pipeline / Security Audit (push) Successful in 3s
CI Pipeline / Frontend Lint & Type Check (push) Successful in 13s
CI Pipeline / Build .deb & Release (push) Failing after 3m15s

This commit is contained in:
2026-04-27 23:01:39 +00:00
parent 001c90f4d8
commit 582416e686

View File

@ -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}" \