File: api.yml

package info (click to toggle)
giza 1.5.0-3
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 4,360 kB
  • sloc: ansic: 13,252; sh: 4,205; f90: 3,003; lex: 437; perl: 330; makefile: 98
file content (20 lines) | stat: -rw-r--r-- 496 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
name: Update API docs
on: push
jobs:
  report:
    runs-on: ubuntu-latest
    steps:
      - name: checkout code
        uses: actions/checkout@v3

      - name: update api docs
        run: |
          cd scripts
          ./generate-docs.sh

      - name: Commit API documentation
        uses: EndBug/add-and-commit@v8
        with:
          default_author: github_actions
          message: '[web-bot] updated auto-generated documentation'
          add: 'docs/documentation/*.html --force'