fix: force xz compression during .deb build (#180)

zst compression is only available on Debian 12, since the release is built on Ubuntu latest, this was breaking release.
Fixes #175
This commit is contained in:
GoldenKiwi 2023-05-02 15:24:32 +02:00 committed by GitHub
parent 04457e7df2
commit ccd9c1a7aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y build-essential devscripts debhelper
sudo debuild --buildinfo-option=-O -us -uc -b -j8
sudo debuild --buildinfo-option=-O -us -uc -b -j8 --compression=xz
find ../ -name "*.deb" -exec mv {} cis-hardening.deb \;
# DELETE THE TAG NAMED LATEST AND THE CORRESPONDING RELEASE
- name: Delete the tag latest and the release latest

View File

@ -29,7 +29,7 @@ jobs:
run: |
sudo apt-get update
sudo apt-get install -y build-essential devscripts debhelper
sudo debuild --buildinfo-option=-O -us -uc -b -j8
sudo debuild --buildinfo-option=-O -us -uc -b -j8 --compression=xz
find ../ -name "*.deb" -exec mv {} cis-hardening.deb \;
# DELETE THE TAG NAMED LATEST AND THE CORRESPONDING RELEASE
- name: Delete the tag latest and the release latest