Skip to content

Commit

Permalink
chore: Fix storybook
Browse files Browse the repository at this point in the history
  • Loading branch information
ericof committed Feb 23, 2023
1 parent 8d2f4ee commit 21004d9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ jobs:

- name: Generate Storybook
run: |
mkdir -p .storybook
chmod -R 777 .storybook
make build-storybook
- name: Deploy to GitHub pages
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ i18n: ## Sync i18n

.PHONY: build-storybook
build-storybook: ## Build storybook
rm -rf .storybook
mkdir .storybook
@echo "$(GREEN)==> Build storybook $(RESET)"
if [ ! -d .storybook ]; then mkdir .storybook; fi
${DOCKER_COMPOSE} run addon-storybook build-storybook

.PHONY: release
Expand Down

0 comments on commit 21004d9

Please sign in to comment.