prepare 6.2 release #4
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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. |