Skip to content
This repository has been archived by the owner on Apr 14, 2024. It is now read-only.

Merge pull request #12 from reaviz/fix/body-scroll-lock-ios #64

Merge pull request #12 from reaviz/fix/body-scroll-lock-ios

Merge pull request #12 from reaviz/fix/body-scroll-lock-ios #64

Workflow file for this run

name: release
on:
push:
branches:
- master
jobs:
release:
runs-on: ubuntu-latest
if: github.repository == 'reaviz/rdk'
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
version: 18.x
- name: Install deps and build (with cache)
uses: bahmutov/npm-install@v1
- name: Build Storybook
run: npm run build-storybook
- name: Publish Storybook to GH Pages
if: success()
uses: crazy-max/ghaction-github-pages@v3
with:
target_branch: gh-pages
build_dir: storybook-static
jekyll: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}