Skip to content

Commit 1323b3c

Browse files
committed
pkg/debian: Skip PGP check as key doesn't seem to be published anywhere
1 parent edfd840 commit 1323b3c

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
su build --pty -s /bin/bash -c 'gpg --keyserver hkps://keyserver.ubuntu.com --recv-keys 3C2C43D9447D5938EF4551EBE23B7E70B467F0BF'
5151
5252
# build package
53-
su build --pty -s /bin/bash -c 'makedeb --sync-deps --no-confirm'
53+
su build --pty -s /bin/bash -c 'makedeb --sync-deps --no-confirm --skippgpcheck'
5454
5555
- name: Sign package
5656
env:

pkg/debian/PKGBUILD

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,10 @@ checkdepends=(
3030
'python3-pytest'
3131
'python3-pyudev'
3232
)
33-
validpgpkeys=('3C2C43D9447D5938EF4551EBE23B7E70B467F0BF')
33+
validpgpkeys=(
34+
'3C2C43D9447D5938EF4551EBE23B7E70B467F0BF'
35+
'594ABBA066118C7A02D10A80A8AF906D9307FBAD'
36+
)
3437

3538
source=(
3639
"https://github.com/linuxwacom/libwacom/releases/download/libwacom-${_pkgver1}/libwacom-${_pkgver1}.tar.bz2"{,.sig}

0 commit comments

Comments
 (0)