This commit is contained in:
parent
4ccc666299
commit
7a3a048e76
1 changed files with 8 additions and 0 deletions
|
@ -27,6 +27,14 @@ jobs:
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
sudo apt-get install -y devscripts debhelper dh-python dpkg-dev jq build-essential
|
sudo apt-get install -y devscripts debhelper dh-python dpkg-dev jq build-essential
|
||||||
|
|
||||||
|
- name: Generate dynamic changelog
|
||||||
|
run: |
|
||||||
|
mkdir -p debian # Ensure the debian directory exists
|
||||||
|
sed -e "s/{{VERSION}}/${{ steps.version.outputs.DEB_VERSION }}/g" \
|
||||||
|
-e "s/{{TAG}}/$GITHUB_REF_NAME/g" \
|
||||||
|
debian/changelog.in > debian/changelog
|
||||||
|
cat debian/changelog # Debugging: Print the generated changelog
|
||||||
|
|
||||||
- name: Build Debian Package
|
- name: Build Debian Package
|
||||||
run: |
|
run: |
|
||||||
debuild -us -uc -b
|
debuild -us -uc -b
|
||||||
|
|
Loading…
Reference in a new issue