update of github action #2
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build & commit | |
| on: push | |
| permissions: | |
| contents: write | |
| jobs: | |
| report: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Make docs | |
| run: make all | |
| - name: Commit files | |
| run: | | |
| git config --global user.name 'dde-fite's github action' | |
| git config --global user.email 'dde-fite@users.noreply.github.com' | |
| git commit -am "Make pandoc" | |
| git push |