Skip to content

Commit 3784ec0

Browse files
committed
Fix subshell command
1 parent dae519b commit 3784ec0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/website.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ jobs:
2929
bundle exec rake site:fetch_latest site:build_doc site:update_search_index site:clean_html site:build_html
3030
- name: Commit changes as last committer
3131
run: |
32-
git config --global user.name "%(git log --format="%aN" -n 1)"
33-
git config --global user.email "%(git log --format="%aE" -n 1)"
32+
git config --global user.name "$(git log --format="%aN" -n 1)"
33+
git config --global user.email "$(git log --format="%aE" -n 1)"
3434
bundle exec rake site:commit_changes
3535
- name: Deploy to GitHub pages via gh-pages branch
3636
uses: s0/git-publish-subdir-action@master

0 commit comments

Comments
 (0)