Skip to content

Update RigoContext.jsx #1212

Update RigoContext.jsx

Update RigoContext.jsx #1212

Workflow file for this run

name: Creating Storybook
on:
push:
branches:
- development
jobs:
storybook:
name: Starting deployment
runs-on: ubuntu-latest
strategy:
matrix:
os: [ubuntu-latest]
node-version: [18.x]
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install and Build 🔧
run: |
npm install -g bun
npm install
npm run build-storybook
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: gh-pages # The branch the action should deploy to.
folder: storybook-static # The folder the action should deploy.