Skip to content

fix colors, padding and margin in pf5 light theme #1

fix colors, padding and margin in pf5 light theme

fix colors, padding and margin in pf5 light theme #1

name: publish-storybook
on:
push:
branches: [main]
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
jobs:
publish-storybook:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18.x'
- name: Install dependencies
run: npm ci
- name: Build Storybook
run: npm run storybook:build
- name: Upload GitHub page
uses: actions/upload-pages-artifact@v3
with:
path: ./storybook-static
- name: Deploy GitHub Page
uses: actions/deploy-pages@v4