Skip to content

Commit

Permalink
Update Storybook documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 9, 2025
0 parents commit f6acee4
Show file tree
Hide file tree
Showing 302 changed files with 82,309 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/update-storybook.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
name: Handle Webhook for Storybook Deployment

on:
repository_dispatch:
types:
- push

jobs:
build-and-deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout Repository
uses: actions/checkout@v3

- name: Checkout Repository
uses: actions/checkout@v3
with:
repository: ir-engine/ir-engine
path: './ir-engine'
ref: dev

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '18'

- name: Install Dependencies
run: |
cd ir-engine
npm install
- name: Build Storybook
run: |
cd ir-engine/packages/ui
npm run build-storybook
- name: Deploy Storybook to master branch
run: |
mv ir-engine/packages/ui/storybook-static .
git config --global user.name "github-actions[bot]"
git config --global user.email "github-actions[bot]@users.noreply.github.com"
git checkout --orphan temp-master
find . -mindepth 1 \
-not -path './.git*' \
-not -path './.github*' \
-not -path './storybook-static*' \
-exec rm -rf {} + 2>/dev/null || true
mv storybook-static/* .
rmdir storybook-static
touch .nojekyll
git add .
git commit -m "Update Storybook documentation"
git push --force origin temp-master:master
Empty file added .nojekyll
Empty file.
29 changes: 29 additions & 0 deletions assets/ActionFunctions-S4b0dcSH.js

Large diffs are not rendered by default.

1 change: 1 addition & 0 deletions assets/AssetType-Br4OjrjG.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/AvatarAnimationSystem-DakA0s9f.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions assets/AvatarComponent-D2jOEcMv.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit f6acee4

Please sign in to comment.