EOS SDK RPC v4.33.0F #22
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 website | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
generate-api-reference: | |
uses: ./.github/workflows/generate-api-reference.yml | |
deploy: | |
needs: generate-api-reference | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Import generated API reference | |
uses: actions/download-artifact@v3 | |
with: | |
name: api-reference-protofiles | |
path: docs/api-reference/ | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: 3.x | |
- name: Install MkDocs and dependencies | |
run: pip install mkdocs-material mkdocs-awesome-pages-plugin mdx_truly_sane_lists | |
- name: Push website to gh-pages branch | |
run: mkdocs gh-deploy --force |