Classifier: Clean up TaskInput styling (#6532) #29
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy storybooks | |
on: | |
push: | |
tags: | |
- production-release | |
workflow_dispatch: | |
jobs: | |
build_storybooks: | |
name: Build storybooks | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 'lts/iron' | |
cache: 'yarn' | |
- run: yarn install --production=false --frozen-lockfile | |
- run: yarn workspace @zooniverse/react-components build:es6 | |
- run: yarn workspace @zooniverse/subject-viewers build:es6 | |
- name: Deploy to GH Pages | |
run: yarn deploy-storybook -- --ci | |
env: | |
GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }} |