From 9a371b8f91d144589b3b298920b51da6d330f0d6 Mon Sep 17 00:00:00 2001 From: finn Date: Wed, 23 Feb 2022 07:16:27 -0800 Subject: [PATCH] fix apt publishing --- .gitlab-ci.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 994e572..9c3dc5d 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -142,9 +142,11 @@ publish deb: - aptly repo create signald - aptly mirror create -ignore-signatures backfill-mirror https://updates.signald.org "${DISTRIBUTION}" main - aptly mirror update -ignore-signatures backfill-mirror - - aptly repo import backfill-mirror signald signald signaldctl + - aptly repo import backfill-mirror signald signald 'signaldctl (>= 0.3.0)' - aptly repo add signald *.deb - - aptly publish repo -config=.aptly.conf -batch -gpg-key="${SIGNING_KEY}" -distribution="${DISTRIBUTION}" "signald" "s3:updates.signald.org:" + - gpg1 --import "${SIGNING_KEY_PATH}" + - gpg1 --list-secret-keys + - aptly publish repo -config=.aptly.conf -batch -gpg-key="${SIGNING_KEY_ID}" -distribution="${DISTRIBUTION}" "signald" "s3:updates.signald.org:" variables: DISTRIBUTION: unstable rules: