Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Vinokhodov committed Sep 10, 2024
1 parent 141a27c commit 1818651
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build-and-upload.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
echo "Section: utils" >> ~/hsm-engine-deb/debian/control
echo "Priority: optional" >> ~/hsm-engine-deb/debian/control
echo "Maintainer: Andrey V <[email protected]>" >> ~/hsm-engine-deb/debian/control
echo "Build-Depends: debhelper (>= 9), cmake, libssl-dev, libcurl4-openssl-dev, libjson-c-dev" >> ~/hsm-engine-deb/debian/control
echo "Build-Depends: debhelper-compat (= 13), cmake, libssl-dev, libcurl4-openssl-dev, libjson-c-dev" >> ~/hsm-engine-deb/debian/control
echo "Standards-Version: 4.5.0" >> ~/hsm-engine-deb/debian/control
echo "" >> ~/hsm-engine-deb/debian/control
echo "Package: hsm-engine" >> ~/hsm-engine-deb/debian/control
Expand All @@ -60,9 +60,13 @@ jobs:
run: |
echo "#!/usr/bin/make -f" > ~/hsm-engine-deb/debian/rules
echo "%:" >> ~/hsm-engine-deb/debian/rules
echo " dh \$@" >> ~/hsm-engine-deb/debian/rules
echo " dh \$@" >> ~/hsm-engine-deb/debian/rules # Используем табуляцию перед dh
chmod +x ~/hsm-engine-deb/debian/rules
- name: Create debian/compat
run: |
echo "13" > ~/hsm-engine-deb/debian/compat # Уровень совместимости debhelper
- name: Create Source Tarball
run: |
cd ~
Expand Down

0 comments on commit 1818651

Please sign in to comment.