Skip to content

Merge pull request #492 from appuniversum/fix/babel-plugin-ember-temp… #223

Merge pull request #492 from appuniversum/fix/babel-plugin-ember-temp…

Merge pull request #492 from appuniversum/fix/babel-plugin-ember-temp… #223

name: Storybook Build
on:
push:
branches:
- master
jobs:
build_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install Node
uses: actions/setup-node@v3
with:
node-version: 18.x
cache: npm
- name: Install Dependencies
run: npm ci
- name: Build
run: npm run build
- name: Deploy
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: storybook-static
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}