mirror of
https://github.com/anchore/grype
synced 2024-11-14 00:07:08 +00:00
5754360376
- Remove old apple signing flow in favor of [quill](https://github.com/anchore/quill) - Update changelog generation to be in sync with syft's flow - Remove old goreleaser docker workflow in favor of single file - Remove individual bootstrap options in favor of single bootstrap action - Update release and validation workflows to use trigger based approach seen in syft - Update golangci.yaml to be equivalent to syft patterns - Remove unused Dockerfile.dev - Remove docker-compose development cycle - Add organized test-fixture Makefile targets Signed-off-by: Christopher Phillips <christopher.phillips@anchore.com>
12 lines
239 B
Bash
Executable file
12 lines
239 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
red=$(tput setaf 1)
|
|
bold=$(tput bold)
|
|
normal=$(tput sgr0)
|
|
|
|
# assert we are running in CI (or die!)
|
|
if [[ -z "$CI" ]]; then
|
|
echo "${bold}${red}This step should ONLY be run in CI. Exiting...${normal}"
|
|
exit 1
|
|
fi
|
|
|