Skip to content

Merge pull request #96 from Holo-Host/feat/publisher-jurisdiction #106

Merge pull request #96 from Holo-Host/feat/publisher-jurisdiction

Merge pull request #96 from Holo-Host/feat/publisher-jurisdiction #106

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 }}