-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fic(circleci): increase timeout for generating GitHub Pages (#1570)
Co-authored-by: Heiko Holz <[email protected]>
- Loading branch information
1 parent
d206454
commit cf76171
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -132,6 +132,7 @@ jobs: | |
- attach_repo | ||
- run: | ||
name: Deploying to GitHub Pages | ||
no_output_timeout: 20m | ||
working_directory: ~/inspectit/repo/inspectit-ocelot-documentation/website | ||
command: | | ||
git config --global user.email "[email protected]" | ||
|
@@ -179,6 +180,11 @@ jobs: | |
git add versions.json versioned_docs versioned_sidebars | ||
git commit -m "[skip ci] Publish documentation v${CIRCLE_TAG}" | ||
git push | ||
- run: | ||
name: Deploying to GitHub Pages | ||
no_output_timeout: 20m | ||
working_directory: ~/inspectit/inspectit-ocelot-documentation/website | ||
command: | | ||
GIT_USER=NTTechnicalUser CUSTOM_COMMIT_MESSAGE="[skip ci] Publish documentation v${CIRCLE_TAG}" npm run publish-gh-pages | ||
# ############################################### | ||
|