Skip to content

Merge pull request #111 from Holo-Host/cc-switch-to-vite-09-09 #110

Merge pull request #111 from Holo-Host/cc-switch-to-vite-09-09

Merge pull request #111 from Holo-Host/cc-switch-to-vite-09-09 #110

Workflow file for this run

name: Push to develop
on:
push:
branches:
- develop
jobs:
deploy-storybook:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '14.x'
- name: Install dependencies
run: yarn
- name: Deploy storybook to GitHub Pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/${GITHUB_REPOSITORY}.git
yarn deploy-storybook
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}