Skip to content

Commit

Permalink
Create github action to generate documentation (#31)
Browse files Browse the repository at this point in the history
  • Loading branch information
akaranjkar-qu authored Mar 18, 2020
1 parent 0b39188 commit b70c846
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/generate_docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
# Github actions workflow to generate documentation

name: Generate documentation and update readme

# Trigger the workflow on push event for master branch
# or pull request events but only for the master branch with the type closed
on:
push:
branches: [ master ]

jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout bootstrap-functions
uses: actions/checkout@v2

- name: Checkout shdoc
uses: actions/checkout@v2
with:
repository: reconquest/shdoc
path: shdoc

- name: Add shdoc to PATH
run: |
echo "::add-path::$GITHUB_WORKSPACE/shdoc"
echo "$PATH"
- name: Generate documentation
run: bash generate_docs.sh

- name: Commit changes
run: |
git config --local user.email "[email protected]"
git config --local user.name "GitHub Action"
git add README.md docs/
git commit -m "Update documentation"
- name: Push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit b70c846

Please sign in to comment.