Skip to content

style: fix disabled effect on Primary Button #25

style: fix disabled effect on Primary Button

style: fix disabled effect on Primary Button #25

Workflow file for this run

name: Deploy docs
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
cache-dependency-path: '**/package-lock.json'
- run: npm ci
- run: npm run build
env:
TURBO_TOKEN: ${{ secrets.VERCEL_TOKEN }}
TURBO_TEAM: enoquetembe
- name: Deploy storybook
working-directory: ./packages/docs
run: npm run deploy-storybook -- --ci --existing-output-dir=storybook-static
env:
GH_TOKEN: ${{ github.actor }}:${{ secrets.GH_TOKEN }}