We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 84c3469 commit e9a76a1Copy full SHA for e9a76a1
.github/workflows/website.yaml
@@ -27,7 +27,12 @@ jobs:
27
env:
28
ALGOLIA_API_KEY: ${{ secrets.ALGOLIA_API_KEY }}
29
run: |
30
- bundle exec rake site:build_doc site:update_search_index site:clean_html site:build_html site:commit_changes
+ bundle exec rake site:build_doc site:update_search_index site:clean_html site:build_html
31
+ - name: Commit changes as last committer
32
+ run: |
33
+ git config user.name "%(git log --format="%aN" -n 1)"
34
+ git config user.email "%(git log --format="%aE" -n 1)"
35
+ bundle exec rake site:commit_changes
36
- name: Deploy to GitHub pages via gh-pages branch
37
uses: s0/git-publish-subdir-action@master
38
0 commit comments