Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .ci/create-arn-table.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,9 @@ set -o pipefail
# AWS_FOLDER - that's the location of the publish-layer-version output for each region

AWS_FOLDER=${AWS_FOLDER?:No aws folder provided}
ARN_FILE=".arn-file.md"
# Get the repository root directory (where .git is located)
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
Comment thread
xrmx marked this conversation as resolved.
Outdated
ARN_FILE="${REPO_ROOT}/.arn-file.md"

{
echo "<details>"
Expand All @@ -28,3 +30,5 @@ done
echo '</details>'
echo ''
} >> "${ARN_FILE}"

echo "INFO: Created ARN table at ${ARN_FILE}"
Loading