Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
mkosunen committed Jan 22, 2024
1 parent 5a1a091 commit 021d03d
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,3 +19,15 @@ jobs:
uses: actions/checkout@v3
- name: Documentation builder action
run: cd doc && make html && cd .. && mv ./doc/build/html/* ./docs/
env:
name: GIT commit and push documentation
env:
CI_COMMIT_MESSAGE: Continuous Integration documentation update
CI_COMMIT_AUTHOR: Continuous Integration
run: |
git config --global user.name "${{ env.CI_COMMIT_AUTHOR }}"
git config --global user.email "${GITHUB_ACTOR}@noreply.github.com"
git add docs
git commit -m "${{ env.CI_COMMIT_MESSAGE }}"
git push

0 comments on commit 021d03d

Please sign in to comment.