Skip to content

fix(Radio): 🐛 Correct orientation of radio and label (#1779) #473

fix(Radio): 🐛 Correct orientation of radio and label (#1779)

fix(Radio): 🐛 Correct orientation of radio and label (#1779) #473

# Builds and deploys Storybook to github pages
# Requires github pages source settings to target the branch and folder in the deploy step from this action
name: Deploy Storybook Production
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Use node 20 and yarn cache
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Build
run: yarn build
- name: Build Storybook
run: yarn build:storybook
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
name: github-pages
path: dist/storybook
# https://github.com/actions/deploy-pages
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
with:
artifact_name: github-pages