fix: Set author for gh release and make upload to gh pages more robust

fix: Fix gh pages upload for releases script
This commit is contained in:
Timo Reymann
2024-08-22 17:38:40 +02:00
parent e2b1faebee
commit 7b7380592b
+8
View File
@@ -22,6 +22,14 @@ jobs:
executor: semantic-release/default executor: semantic-release/default
steps: steps:
- checkout - 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: - run:
name: Upload release to pages name: Upload release to pages
command: ./scripts/upload-release-to-pages.sh "${CIRCLE_TAG}" command: ./scripts/upload-release-to-pages.sh "${CIRCLE_TAG}"