Skip to content

docs: partial update on sdk readme methods #133

docs: partial update on sdk readme methods

docs: partial update on sdk readme methods #133

Workflow file for this run

name: Build and Deploy Staging
on:
push:
branches:
- staging
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 16
- name: Configure Git
run: |
git config --global user.name "GitHub Actions"
git config --global user.email "[email protected]"
- name: Install dependencies
working-directory: ./docs
run: yarn install
- name: Build
working-directory: ./docs
run: yarn build-gh
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: docs/src/.vuepress/dist
publish_branch: gh-pages