mirror of
https://github.com/anchore/syft
synced 2024-11-10 06:14:16 +00:00
341288ba29
* refactor signing steps in release/snapshot workflows Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * show signing logs on snapshot or release failure Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * update install.sh + tests to account for new goreleaser changes Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * update cli tests to account for new goreleaser build names Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * fix acceptance test to use new snapshot bin path Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * add notarization Signed-off-by: Alex Goodman <alex.goodman@anchore.com> * address review comments Signed-off-by: Alex Goodman <alex.goodman@anchore.com>
10 lines
No EOL
239 B
Bash
Executable file
10 lines
No EOL
239 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -eu
|
|
|
|
# grab utilities
|
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
|
. "$SCRIPT_DIR"/utils.sh
|
|
|
|
# cleanup any dev certs left behind
|
|
. "$SCRIPT_DIR"/prep-signing-dev.sh
|
|
cleanup_signing |