Skip to content

Commit c9283d7

Browse files
committed
Add git config
1 parent 8faef69 commit c9283d7

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/multidocs.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,12 +21,6 @@ jobs:
2121
- name: Set up
2222
run: git config --global init.defaultBranch test-multidocs
2323

24-
- name: Create orphan branch
25-
run: |
26-
git checkout --orphan dep-multidocs || echo "Branch already exists or cannot be created."
27-
git commit --allow-empty -m "Initial commit for documentation build" || echo "No commits to create."
28-
29-
3024
# Build GNNGraphs docs
3125
- name: Install dependencies for GNNGraphs
3226
run:
@@ -163,4 +157,7 @@ jobs:
163157
env:
164158
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # For authentication with GitHub Actions token
165159
DOCUMENTER_KEY: ${{ secrets.DOCUMENTER_KEY }}
166-
run: julia --project=docs/ docs/make-multi.jl
160+
run: |
161+
git config user.name github-actions
162+
git config user.email [email protected]
163+
julia --project=docs/ docs/make-multi.jl

0 commit comments

Comments
 (0)