Skip to content

Commit

Permalink
ci: avoid clashes in log files when merging artifacs
Browse files Browse the repository at this point in the history
  • Loading branch information
zaloisio committed Jan 19, 2023
1 parent 4e75ef4 commit e9fb31d
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,11 @@ jobs:
cp ${IMAGE_PATH}/*.md5 workspace/release
cp ${IMAGE_PATH}/*ubi.w workspace/release || :
cp /tmp/build.log workspace/release/${MODEL}-build.log
if [[ ${UI} == "none" ]]; then
cp /tmp/build.log workspace/release/${MODEL}-build.log
else
cp /tmp/build.log workspace/release/${MODEL}_${UI}-build.log
fi
if [ -z "${CIRCLE_TAG}" ]; then
echo "No CHANGELOG to copy. Not a release build."
else
Expand Down

0 comments on commit e9fb31d

Please sign in to comment.