Skip to content

Commit

Permalink
add deployment workflow to github pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahdi-Hazrati committed Oct 16, 2024
1 parent 3e617ff commit 04ad0a7
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 0 deletions.
35 changes: 35 additions & 0 deletions .github/workflows/deploy-npui-github-pages.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# Workflow name
name: Build and Publish NPUI to GitHub Pages

on:
# Event for the workflow to run on
push:
branches:
- 'main' # Replace with the branch you want to deploy from

permissions:
contents: read
pages: write
id-token: write

# List of jobs
jobs:
deploy:
runs-on: ubuntu-latest
# Job steps
steps:
# Manual Checkout
- uses: actions/checkout@v4

# Set up Node
- uses: actions/setup-node@v4
with:
node-version: '16.x'

#👇 Add Storybook build and deploy to GitHub Pages as a step in the workflow
- uses: bitovi/[email protected]
with:
install_command: npm ci # default: npm ci
build_command: npm run build-storybook # default: npm run build-storybook
path: storybook-static # default: dist/storybook
checkout: false # default: true
1 change: 1 addition & 0 deletions .storybook/manager-head.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
<meta name="description" content="NPUI, Delivered by Next Production dev" key="npui" />

0 comments on commit 04ad0a7

Please sign in to comment.