Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .github/workflows/build-git-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -690,6 +690,15 @@ jobs:
# Install debsigs
sudo apt-get install -y debsigs

# Stop using SHA-1 for the signature. For details, see
# https://gitlab.com/debsigs/debsigs/-/commit/75c6c8f96e6cdc33bca9c5f32195b68ff35bc32f
# which seems to have made it to have made it into debsigs v0.2.1, but Ubuntu 24.04 is
# stuck with v1.19.
mkdir -p patched-debsigs &&
sed 's/, "--openpgp"//' </usr/bin/debsigs >patched-debsigs/debsigs &&
chmod a+x patched-debsigs/debsigs &&
echo "$PWD/patched-debsigs" >>$GITHUB_PATH

# Import GPG key
echo -n '${{ steps.gpg-secrets.outputs.private-key }}' | gpg --import --no-tty --batch --yes

Expand Down
Loading