Skip to content

Commit

Permalink
fix: sign artifacts in subdirectories (#6080)
Browse files Browse the repository at this point in the history
  • Loading branch information
powersj authored Feb 28, 2024
2 parents 494035e + 3a7b923 commit a767cf5
Showing 1 changed file with 1 addition and 13 deletions.
14 changes: 1 addition & 13 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -240,7 +229,6 @@ jobs:
at: /tmp/workspace/build
- aws-s3/sync:
arguments: |
--dryrun \
--exclude '*' \
--include '*.asc' \
--acl public-read
Expand Down

0 comments on commit a767cf5

Please sign in to comment.