fix(ci): surface rpm --addsign error output in CI logs
All checks were successful
poll-upstream / check (push) Successful in 1s

Capture stderr from rpm --addsign so the actual gpg error is visible
when signing fails.

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-04-26 17:06:40 +03:00
parent 6ffbde4c30
commit 33aa40ee85

View File

@@ -9,7 +9,10 @@ REMOTE_DIR="/var/www/rpm/fedora/${FEDORA_VERSION}/x86_64"
# sign each rpm with the imported gpg key # sign each rpm with the imported gpg key
for rpm in "${RPM_DIR}"/*.rpm; do for rpm in "${RPM_DIR}"/*.rpm; do
echo "signing ${rpm}..." echo "signing ${rpm}..."
rpm --addsign "${rpm}" if ! rpm --addsign "${rpm}" 2>&1; then
echo "failed to sign ${rpm}" >&2
exit 1
fi
done done
install --directory --mode 700 ~/.ssh install --directory --mode 700 ~/.ssh