From 3a7b923e3f28979af465e51605f48737f8f5cbf9 Mon Sep 17 00:00:00 2001 From: Brandon Pfeifer Date: Wed, 28 Feb 2024 12:02:47 -0500 Subject: [PATCH] fix: sign artifacts in subdirectories Remove "--dryrun" from S3 upload. --- .circleci/config.yml | 14 +------------- 1 file changed, 1 insertion(+), 13 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 6a94f7d321..199a975215 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -209,18 +209,7 @@ jobs: - attach_workspace: at: /tmp/workspace - run: | - for target in /tmp/workspace/build/* - do - case "${target}" - in - # rsign is shipped on Alpine Linux which uses "busybox ash" instead - # of bash. ash is somewhat more posix compliant and is missing some - # extensions and niceties from bash. - *.deb|*.rpm|*.tar.gz|*.zip) - rsign "${target}" - ;; - esac - done + find /tmp/workspace/build -type f -exec rsign '{}' \; - persist_to_workspace: root: /tmp/workspace paths: @@ -240,7 +229,6 @@ jobs: at: /tmp/workspace/build - aws-s3/sync: arguments: | - --dryrun \ --exclude '*' \ --include '*.asc' \ --acl public-read