Skip to content

Commit 8aaaa2b

Browse files
committed
see git config before deploying
1 parent a4d9ab4 commit 8aaaa2b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,7 @@ jobs:
2424
- name: Install dependencies
2525
run: julia --project=. -e 'using Pkg; Pkg.instantiate()'
2626
- name: Aggregate and deploy
27-
run: julia --project=. docs/make.jl
27+
run: |
28+
git config user.name github-actions
29+
git config user.email [email protected]
30+
julia --project=. docs/make.jl

0 commit comments

Comments
 (0)