Skip to content

Commit

Permalink
Fix subshell command
Browse files Browse the repository at this point in the history
  • Loading branch information
rmosolgo committed Jun 1, 2023
1 parent dae519b commit 3784ec0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/website.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,8 @@ jobs:
bundle exec rake site:fetch_latest site:build_doc site:update_search_index site:clean_html site:build_html
- name: Commit changes as last committer
run: |
git config --global user.name "%(git log --format="%aN" -n 1)"
git config --global user.email "%(git log --format="%aE" -n 1)"
git config --global user.name "$(git log --format="%aN" -n 1)"
git config --global user.email "$(git log --format="%aE" -n 1)"
bundle exec rake site:commit_changes
- name: Deploy to GitHub pages via gh-pages branch
uses: s0/git-publish-subdir-action@master
Expand Down

0 comments on commit 3784ec0

Please sign in to comment.