Skip to content
This repository has been archived by the owner on Jun 2, 2024. It is now read-only.

[web] Fix re-save old data #49

[web] Fix re-save old data

[web] Fix re-save old data #49

Workflow file for this run

name: Publish Library Docs
on:
push:
branches: ["master"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Install Dependencies
run: npm install
- name: Build Docs
run: npm run docs
working-directory: ./packages/lib
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: "./packages/lib/docs"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2