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}"