Skip to content

Merge pull request #1746 from lumi-tip/development-lumi-7848 #1238

Merge pull request #1746 from lumi-tip/development-lumi-7848

Merge pull request #1746 from lumi-tip/development-lumi-7848 #1238

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/[email protected]
- 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/[email protected]
with:
branch: gh-pages # The branch the action should deploy to.
folder: storybook-static # The folder the action should deploy.