Skip to content

Merge pull request #131 from tablelandnetwork/joe/publish #35

Merge pull request #131 from tablelandnetwork/joe/publish

Merge pull request #131 from tablelandnetwork/joe/publish #35

Workflow file for this run

name: SDK Docs
on:
push:
branches:
- main
concurrency:
group: docs-${{github.ref}}
cancel-in-progress: true
jobs:
docs:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./packages/sdk
steps:
- name: Checkout 🛎️
uses: actions/[email protected]
with:
persist-credentials: false
- name: Cache 📦
uses: actions/cache@v1
with:
path: ~/.npm # npm cache files are stored in `~/.npm` on Linux/macOS
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Setup ⬢
uses: actions/setup-node@v2-beta
with:
node-version: 18
- name: Install 🔧
run: npm install
- name: Build 🛠
run: npm run build
- name: Docs 📓
run: |
cd packages/sdk
npm run docs
touch docs/.nojekyll
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: packages/sdk/docs