Skip to content

Commit

Permalink
add publish docs job to CI
Browse files Browse the repository at this point in the history
Signed-off-by: Ahmad Rezaii <[email protected]>
  • Loading branch information
arezaii committed Jan 29, 2025
1 parent 49651a3 commit 648df73
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -189,3 +189,21 @@ jobs:
break
fi
done
publish-docs:
runs-on: ubuntu-latest
needs: make_doc
steps:
- name: download docs
uses: actions/download-artifact@v4
with:
name: documentation

- name: push docs
run: |
echo "Publish docs step demo"
ls -l
cat index.html
# Stuff to push docs to a web server
# maybe using rsync
# rsync -avz documentation/doc/html/ user@server:/path/to/docs

0 comments on commit 648df73

Please sign in to comment.