Skip to content

sui-graphql-client: avoid an extra RPC call by checking if first and … #71

sui-graphql-client: avoid an extra RPC call by checking if first and …

sui-graphql-client: avoid an extra RPC call by checking if first and … #71

Workflow file for this run

name: rustdoc
on:
push:
branches: [ master ]
workflow_dispatch:
env:
RUSTFLAGS: -D warnings
jobs:
rustdoc:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: rustdoc
run: make doc
- name: Deploy Docs
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: gh-pages
publish_dir: ./target/doc
force_orphan: true