Skip to content
Snippets Groups Projects
Commit 9d545f2b authored by Lorenzo Pagliai's avatar Lorenzo Pagliai
Browse files

[REPORT] Fix on link report naming on tag

* The report creation included an extra string on the link to the
artifacts that was not really present and gave rise to not working URLs.
parent b62c6b1e
No related branches found
No related tags found
No related merge requests found
......@@ -160,8 +160,8 @@ workflow:
echo -e "$CI_JOB_NAME: \t\t $CI_JOB_STATUS" >> Job_message_"$BOARD"_"$IMAGE_NAME".txt
echo -e "$CI_JOB_NAME \t $CI_JOB_STATUS" >> Job_report_"$BOARD"_"$IMAGE_NAME".txt
fi
DEPLOY_PATH="${TAG_NAME}/week_$(date +%U)"
DEPLOY_DATE=$(date +%Y%m%d)
DEPLOY_PATH="${TAG_NAME}/week_$(date +%U)"
if [ -n "$CUSTOM" ]; then
AZURE_STORAGE_SAS_TOKEN="${AZURE_STORAGE_PRIVATE_SAS_TOKEN}"
AZURE_CONTAINER_NAME="${AZURE_PRIVATE_CONTAINER_NAME}"
......@@ -169,7 +169,6 @@ workflow:
if [ -n "$CI_COMMIT_TAG" ]; then
TAG_NAME=${CI_COMMIT_TAG}
DEPLOY_PATH=${TAG_NAME}
AZURE_PATH="${AZURE_PATH}/edgehog"
if [ ! -n "$CUSTOM" ]; then
AZURE_STORAGE_SAS_TOKEN="${AZURE_STORAGE_PUBLIC_SAS_TOKEN}"
AZURE_CONTAINER_NAME="${AZURE_PUBLIC_CONTAINER_NAME}"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment