We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bbd56f commit 36a0803Copy full SHA for 36a0803
.ci/create-arn-table.sh
@@ -7,7 +7,9 @@ set -o pipefail
7
# AWS_FOLDER - that's the location of the publish-layer-version output for each region
8
9
AWS_FOLDER=${AWS_FOLDER?:No aws folder provided}
10
-ARN_FILE=".arn-file.md"
+# Get the repository root directory (where .git is located)
11
+REPO_ROOT="$(realpath $(dirname "${BASH_SOURCE[0]}")/..)"
12
+ARN_FILE="${REPO_ROOT}/.arn-file.md"
13
14
{
15
echo "<details>"
@@ -28,3 +30,5 @@ done
28
30
echo '</details>'
29
31
echo ''
32
} >> "${ARN_FILE}"
33
+
34
+echo "INFO: Created ARN table at ${ARN_FILE}"
0 commit comments