Add build and deploy manual for k8s(for now, empty page to share) #80
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: gh-pages deploy | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Build & Deploy docs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout latest codes | |
uses: actions/checkout@v2 | |
# refer: https://github.com/marketplace/actions/deploy-mkdocs | |
- name: Build & Deploy using mkdocs-deploy Action | |
uses: mhausenblas/mkdocs-deploy-gh-pages@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
CONFIG_FILE: mkdocs.yml | |
CUSTOM_DOMAIN: docs.lightningdb.io | |
EXTRA_PACKAGES: build-base | |
REQUIREMENTS: requirements.txt |