Skip to content
This repository was archived by the owner on Feb 15, 2026. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/scripts/generate-changelog.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,10 @@ if [ -z "$UPSTREAM" ] || [ -z "$REVISION" ]; then
exit 1
fi

# Package name
PACKAGE_NAME="halpi2-daemon"
# Package name - use PACKAGE_NAME env var (from workflow) or read from debian/control
if [ -z "${PACKAGE_NAME:-}" ]; then
PACKAGE_NAME=$(grep "^Source:" debian/control | cut -d: -f2 | tr -d ' ')
fi

# Debian version format: upstream-revision
DEBIAN_VERSION="${UPSTREAM}-${REVISION}"
Expand Down