Skip to content
Merged
Show file tree
Hide file tree
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: 3 additions & 3 deletions .github/workflows/build-deb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -91,9 +91,9 @@ jobs:
if [[ "$VERSION" == *"~${CODENAME}"* || "$VERSION" == *"+${CODENAME}"* ]]; then
echo "Version already contains codename suffix, skipping dch."
else
# If there's already a ~ in version (like ~pre1), add +codename
if [[ "$VERSION" == *"~"* ]]; then
dch --local +${CODENAME} --distribution ${CODENAME} "Build for ${CODENAME}"
if [[ ! $GITHUB_REF =~ ^refs/tags/ ]]; then
# Not a tag, so add ~pre<x>
dch --local ~pre${GITHUB_RUN_NUMBER}+${CODENAME} --distribution ${CODENAME} "Pre-release build"
else
dch --local ~${CODENAME} --distribution ${CODENAME} "Build for ${CODENAME}"
fi
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
libosal (0.1.1) unstable; urgency=low

* prep: github debian build action

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

medium

For consistency with previous release entries in this file (e.g., prep: 0.0.6 release), and for better clarity, consider making this changelog message more specific to the release version. The current message prep: github debian build action is a bit vague.

  * prep: 0.1.1 pre-release


-- Robert Burger <robert.burger@dlr.de> Tue, 05 Aug 2025 07:07:08 +0200

libosal (0.1.0) unstable; urgency=low

* del: old project props
Expand Down