Skip to content

Commit

Permalink
add github action for doc
Browse files Browse the repository at this point in the history
  • Loading branch information
AmirMardan committed Mar 27, 2024
1 parent d20d4d2 commit bed091d
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/docs_pages_workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
name: docs_pages_workflow

on:
push:
branches: [ dev ]

jobs:

build_docs_job:
runs-on: ubuntu-latest
env:
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

steps:
- name: Checkout
uses: actions/checkout@v2.3.4

- name: Set up Python
uses: actions/setup-python@v2.2.1
with:
python-version: 3.9

- name: Install dependencies
run: |
python -m pip install -U sphinx
python -m pip install sphinx-rtd-theme
- name: make the sphinx docs
run: |
make -C docs clean
make -C docs html
- name: Init new repo in dist folder and commit
run: |
cd docs/build/html/
git init
touch .nojekyll
git add -A
git config --local user.email "action@github.com"
git config --local user.name "GitHub Action"
git commit -m 'deploy'
- name: Force push to destination branch
uses: ad-m/github-push-action@v0.5.0
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
force: true
directory: ./docs/build/html

0 comments on commit bed091d

Please sign in to comment.