Skip to content

prepare 6.2 release

prepare 6.2 release #4

Workflow file for this run

name: Update Docs
on:
push:
tags:
- "*"
env:
CI: true
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v4
- run: node --version
- run: yarn --version
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build docs
run: yarn docs:build
- name: Deploy to gh-pages
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
BRANCH: gh-pages # The branch the action should deploy to.
FOLDER: styleguide # The folder the action should deploy.