From 6b786d6461c8922c99654237363b5eced83aff5c Mon Sep 17 00:00:00 2001 From: nl6720 Date: Wed, 25 Aug 2021 00:07:19 +0300 Subject: [PATCH] .gitlab/ci/build_archiso.sh: use mkarchiso's -G option Set gpg's --sender. See archiso!203. --- .gitlab/ci/build_releng.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.gitlab/ci/build_releng.sh b/.gitlab/ci/build_releng.sh index 718348d..9d2f3a8 100755 --- a/.gitlab/ci/build_releng.sh +++ b/.gitlab/ci/build_releng.sh @@ -206,6 +206,8 @@ EOF | awk -F':' '{if($1 ~ /sec/){ print $5 }}' )" + pgp_sender="Arch Linux Release Engineering (Ephemeral Signing Key) " + print_section_end "ephemeral_pgp_key" } @@ -316,6 +318,7 @@ run_mkarchiso() { -D "${install_dir}" \ -c "${codesigning_cert} ${codesigning_key}" \ -g "${pgp_key_id}" \ + -G "${pgp_sender}" \ -o "${output}/" \ -w "${tmpdir}/" \ -m "iso netboot bootstrap" \