Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: sign artifacts in subdirectories #6080

Merged
merged 1 commit into from
Feb 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading