Skip to content

Update README.md

Update README.md #182

Workflow file for this run

name: Deploy Docs
on:
workflow_dispatch:
push:
tags:
- v*
jobs:
docs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Setup node env
uses: actions/[email protected]
with:
node-version: 16
- name: Install dependencies
run: cd docs && npm install
- name: Generate
run: cd docs && npm run generate
env:
NUXT_APP_BASE_URL: /telegraph
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs/dist