mirror of
https://github.com/smallstep/certificates.git
synced 2024-10-31 03:20:16 +00:00
31 lines
736 B
Bash
Executable File
31 lines
736 B
Bash
Executable File
#/bin/sh
|
|
set -ex;
|
|
|
|
OUTPUT_DIR=$1
|
|
RELEASE_DIR=$2
|
|
|
|
STEP_VERSION=$3
|
|
STEP_PLATFORM=$4
|
|
STEP_ARCH=$5
|
|
STEP_EXEC_NAME=$6
|
|
STEP_CLOUDKMS_EXEC_NAME=$7
|
|
|
|
BUNDLE_DIR=${OUTPUT_DIR}/bundle
|
|
|
|
mkdir -p "$BUNDLE_DIR" "$RELEASE_DIR"
|
|
TMP=$(mktemp -d "$BUNDLE_DIR/tmp.XXXX")
|
|
trap "rm -rf $TMP" EXIT INT QUIT TERM
|
|
|
|
stepName=step-certificates_${STEP_VERSION}
|
|
newdir="$TMP/${stepName}"
|
|
mkdir -p "$newdir/bin"
|
|
|
|
cp "$OUTPUT_DIR/bin/${STEP_EXEC_NAME}" "$newdir/bin/${STEP_EXEC_NAME}"
|
|
cp "$OUTPUT_DIR/bin/${STEP_CLOUDKMS_EXEC_NAME}" "$newdir/bin/${STEP_CLOUDKMS_EXEC_NAME}"
|
|
|
|
cp README.md "$newdir"
|
|
NEW_BUNDLE="${RELEASE_DIR}/step-certificates_${STEP_PLATFORM}_${STEP_VERSION}_${STEP_ARCH}.tar.gz"
|
|
|
|
rm -f "$NEW_BUNDLE"
|
|
tar -zcvf "$NEW_BUNDLE" -C "$TMP" "${stepName}"
|