From c52566c4cce3254506bd514c0df9dadaac55d762 Mon Sep 17 00:00:00 2001 From: Meliox Date: Sun, 9 Aug 2026 10:34:12 +0200 Subject: [PATCH] revert test signing --- .github/workflows/test-release.yml | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/.github/workflows/test-release.yml b/.github/workflows/test-release.yml index a5a1a73..36b3e68 100644 --- a/.github/workflows/test-release.yml +++ b/.github/workflows/test-release.yml @@ -20,7 +20,7 @@ jobs: - name: Install build deps run: | sudo apt-get update -qq - sudo apt-get install -y devscripts debhelper build-essential dpkg-sig + sudo apt-get install -y devscripts debhelper build-essential - name: Compute build version id: version @@ -62,23 +62,6 @@ jobs: echo "=== Package contents ===" dpkg-deb --contents ../*.deb - - name: Import GPG key - if: env.GPG_PRIVATE_KEY != '' - env: - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - run: | - echo "$GPG_PRIVATE_KEY" | gpg --batch --import - - - name: Sign deb package - if: env.GPG_PRIVATE_KEY != '' - env: - GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} - GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }} - run: | - DEB=$(ls ../*.deb) - dpkg-sig --sign builder -k "$GPG_KEY_ID" --gpg-options "--batch" "$DEB" - dpkg-sig --verify "$DEB" - - name: Collect deb artifacts id: collect run: |