Skip to content

Merge pull request #65 from solapi/beta #30

Merge pull request #65 from solapi/beta

Merge pull request #65 from solapi/beta #30

Workflow file for this run

name: Build SDK API References Documents
on:
push:
branches: [ master ]
jobs:
build-docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build
run: |
yarn install
yarn run docs
- name: Commit and push docs
working-directory: ./
run: |
git config --global user.email "wiley@nurigo.net"
git config --global user.name "Github Actions"
git add ./docs
git commit -m "Update SDK API References"
git push