Skip to content

Commit

Permalink
chore: generate "influxdb.${CIRCLE_TAG}.digests" for each release (#2…
Browse files Browse the repository at this point in the history
  • Loading branch information
bnpfeife committed Jun 8, 2023
1 parent fd0f0ce commit 8f45c5b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,6 +169,15 @@ jobs:
rsign "${target}"
;;
esac
if [ -f "${target}" ]
then
# Since all artifacts are present, sign them here. This saves Circle
# credits over spinning up another instance just to separate out the
# checksum job. Individual checksums are written by the
# "build_packages" script.
sha256sum "${target}" >> "/tmp/workspace/packages/influxdb.${CIRCLE_TAG}.digests"
fi
done
- persist_to_workspace:
root: /tmp/workspace
Expand Down Expand Up @@ -407,7 +416,6 @@ workflows:
<<: *release_filter
- unit_test_race:
<<: *release_filter

on_push:
when:
equal: [ << pipeline.parameters.workflow >>, build ]
Expand Down

0 comments on commit 8f45c5b

Please sign in to comment.