mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 16:33:21 +01:00
26 lines
727 B
Bash
Executable File
26 lines
727 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -ue
|
|
|
|
BIN="syft"
|
|
DISTDIR=$1
|
|
VERSION=$2
|
|
|
|
if [[ $VERSION == *-* ]] ; then
|
|
echo "skipping publishing a version file (this is a pre-release: ${VERSION})"
|
|
exit 0
|
|
fi
|
|
|
|
echo "creating and publishing version file"
|
|
|
|
# create a version file for version-update checks
|
|
echo "${VERSION}" | tee ${DISTDIR}/VERSION
|
|
|
|
# upload the version file that supports the application version update check
|
|
docker run --rm \
|
|
-i \
|
|
-e AWS_DEFAULT_REGION=us-west-2 \
|
|
-e AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID} \
|
|
-e AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY} \
|
|
-v $(pwd)/${DISTDIR}/:/distmount \
|
|
amazon/aws-cli \
|
|
s3 cp /distmount/VERSION s3://toolbox-data.anchore.io/${BIN}/releases/latest/VERSION |