From 7b7380592be3c5262910b7ed49b9546b23d0acfa Mon Sep 17 00:00:00 2001 From: Timo Reymann Date: Thu, 22 Aug 2024 17:38:40 +0200 Subject: [PATCH] fix: Set author for gh release and make upload to gh pages more robust fix: Fix gh pages upload for releases script --- .circleci/config.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.circleci/config.yml b/.circleci/config.yml index b6575b5..bd9644c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -22,6 +22,14 @@ jobs: executor: semantic-release/default steps: - checkout + - run: + name: Configure git + command: | + git config --global user.email "no-reply@circleci.com" + git config --global user.name "CircleCI" + - run: + name: Wait a bit for release tag to be created + command: sleep 10 - run: name: Upload release to pages command: ./scripts/upload-release-to-pages.sh "${CIRCLE_TAG}"