-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
name: Build and Deploy Website | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v2 # This action checks out your repository code | ||
|
||
- name: Set up Python | ||
uses: actions/setup-python@v2 | ||
with: | ||
python-version: 3.9 | ||
|
||
- name: Install dependencies | ||
run: | | ||
pip install -r docs/requirements.txt | ||
- name: Build HTML | ||
run: | | ||
cd docs | ||
make html | ||
- name: Deploy to gh-pages | ||
run: | | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "rashatwi" | ||
git checkout --orphan gh-pages | ||
git reset --hard | ||
mv docs/build/* . | ||
touch .nojekyll | ||
git add . | ||
git commit -m "Deploy website" | ||
git branch -M gh-pages | ||
git push -f origin gh-pages |