Skip to content

Commit

Permalink
Debug-print dch version value.
Browse files Browse the repository at this point in the history
Signed-off-by: s3rj1k <[email protected]>
  • Loading branch information
s3rj1k committed Jan 11, 2024
1 parent d42b9f5 commit 951a225
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/ci-deb-packages-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ jobs:
# eval inside runner
hash=$(echo $GITHUB_SHA | cut -c1-10)
dch -b -M -v "\${version}-${GITHUB_RUN_ID}~\${hash}~\${lsb}" --force-distribution -D "\${lsb}" "Nightly build, \${hash}"
# deb package version
dch_version=\${version}-${GITHUB_RUN_ID}~\${hash}~\${lsb}
echo "dch_version: \${dch_version}"
dch -b -M -v "\${dch_version}" --force-distribution -D "\${lsb}" "Nightly build, \${hash}"
if [ $? -ne 0 ]; then
exit 1
fi
Expand Down

0 comments on commit 951a225

Please sign in to comment.