#!/bin/bash set -euo pipefail files="$(find . -type f | cut -d'/' -f2-)" echo "" echo "" echo "

Release Artifacts

" for file in $files; do s3url="s3://${RELEASE_BUCKET}${RELEASE_KEY_PREFIX}/${file}" presigned="$(aws s3 presign --expires $EXPIRES --region $REGION $s3url)" echo "
  • " echo " " echo " $file" echo " " echo "
  • " done echo "" echo ""