Skip to content

Commit 94c8b88

Browse files
author
Matthias Koeppe
committed
Fixup
1 parent f429993 commit 94c8b88

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

.github/workflows/doc-build-pdf.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,8 @@ jobs:
6363
id: worktree
6464
run: |
6565
git config --global --add safe.directory $(pwd)
66+
git config --global user.email "[email protected]"
67+
git config --global user.name "Build & Test workflow"
6668
.ci/retrofit-worktree.sh worktree-image /sage
6769
# Keep track of changes to built HTML
6870
new_version=$(cat src/VERSION.txt); (cd /sage/local/share/doc/sage/html/en && find . -name "*.html" | xargs sed -i '/class="sidebar-brand-text"/s/Sage [0-9a-z.]* /Sage '$new_version' /'; git init && (echo "*.svg binary"; echo "*.pdf binary") >> .gitattributes && (echo ".buildinfo"; echo '*.inv'; echo '.git*'; echo '*.svg'; echo '*.pdf'; echo '*.png'; echo 'searchindex.js') > .gitignore; git add -A && git commit --quiet -m "old")

.github/workflows/doc-build.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,8 @@ jobs:
5454
id: worktree
5555
run: |
5656
git config --global --add safe.directory $(pwd)
57+
git config --global user.email "[email protected]"
58+
git config --global user.name "Build & Test workflow"
5759
.ci/retrofit-worktree.sh worktree-image /sage
5860
# Keep track of changes to built HTML
5961
new_version=$(cat src/VERSION.txt); (cd /sage/local/share/doc/sage/html/en && find . -name "*.html" | xargs sed -i '/class="sidebar-brand-text"/s/Sage [0-9a-z.]* /Sage '$new_version' /'; git init && (echo "*.svg binary"; echo "*.pdf binary") >> .gitattributes && (echo ".buildinfo"; echo '*.inv'; echo '.git*'; echo '*.svg'; echo '*.pdf'; echo '*.png'; echo 'searchindex.js') > .gitignore; git add -A && git commit --quiet -m "old")

0 commit comments

Comments
 (0)