From 01a0a5bf96636e51700eacb440fe8ee03b76625e Mon Sep 17 00:00:00 2001 From: mdefende <mdefende@uab.edu> Date: Tue, 16 Jul 2024 16:23:15 -0500 Subject: [PATCH] add debug --- .gitlab-ci.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 63d47b6..aaee2b7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -21,7 +21,9 @@ febio-dl: script: - apk add --no-cache curl - | - URL=$(aws s3 presign s3://$LTS_BUCKET/$LTS_FILE_KEY --endpoint-url $LTS_ENDPOINT --expires-in 600 --output text) + cmd="aws s3 presign s3://$LTS_BUCKET/$LTS_FILE_KEY --endpoint-url $LTS_ENDPOINT --expires-in 600 --output text" + echo "Presign Command: $cmd" + URL=$(cmd) echo "Pre-signed URL: $URL" curl -o febio_installer.zip "$URL" artifacts: -- GitLab