.github: Add deploy action for gh-pages #5
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
name: Deploy GH pages | |
on: | |
push: | |
branches: | |
- master | |
env: | |
USER: root | |
jobs: | |
deploy-gh-pages: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Cache plugin data | |
id: cache-plugins | |
uses: actions/cache@v4 | |
with: | |
path: .cache | |
key: cache-plugins | |
- name: Checkout gh-pages branch | |
run: | | |
git branch --delete --force gh-pages || true | |
git checkout -b gh-pages | |
- name: Apply deploy config | |
run: | | |
echo "" >> mkdocs.yml | |
echo "site_url: https://isovalent.github.io" >> mkdocs.yml | |
echo "" >> mkdocs.yml | |
echo "extra:" >> mkdocs.yml | |
echo " analytics:" >> mkdocs.yml | |
echo " provider: google" >> mkdocs.yml | |
echo " property: G-KVJ1CK539N" >> mkdocs.yml | |
- name: Build html | |
run: | | |
make html PROD=true GH_TOKEN=${{ secrets.GITHUB_TOKEN }} | |
mv docs src | |
mv out docs | |
- name: Deploy to gh-pages | |
run: | | |
rm out/.gitignore || true | |
git config --global user.email "[email protected]" | |
git config --global user.name "GH Deploy Action" | |
git add -f docs/. | |
git commit -m "Deploy to gh-pages" | |
git push -f --set-upstream origin gh-pages | |