Update from https://github.com/ChainMovers/suibase/commit/bdce8dbeebf… #28
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: Generate and deploy docs | |
on: | |
push: | |
branches: ["main"] | |
workflow_dispatch: | |
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages | |
permissions: | |
contents: read | |
pages: write | |
id-token: write | |
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued. | |
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete. | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
# Single deploy job since we're just deploying | |
deploy: | |
environment: | |
name: github-pages | |
url: ${{ steps.deployment.outputs.page_url }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Suibase | |
run: | | |
mkdir -p $HOME/.local/bin | |
echo "$HOME/.local/bin" >> $GITHUB_PATH | |
git config --global url."https://github".insteadOf git://github | |
git clone https://github.com/chainmovers/suibase.git $HOME/suibase | |
- name: Run suibase tests | |
run: | | |
$HOME/suibase/scripts/common/__scripts-tests.sh --github | |
- name: Generate docs | |
run: | | |
ln -s $GITHUB_WORKSPACE $HOME/suibase-api-docs | |
localnet update --nobinary | |
cd $HOME/suibase/rust/helper | |
$HOME/suibase-api-docs/preprocess.sh | |
cargo doc -p suibase --no-deps | |
$HOME/suibase-api-docs/postprocess.sh | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v1 | |
with: | |
# Upload docs only | |
path: "./docs" | |
- name: Deploy to GitHub Pages | |
id: deployment | |
uses: actions/deploy-pages@v2 |