diff --git a/scripts/push_on_ipfs.py b/scripts/push_on_ipfs.py index 5c9fa0a2..e0a1a44e 100644 --- a/scripts/push_on_ipfs.py +++ b/scripts/push_on_ipfs.py @@ -41,7 +41,7 @@ async def upload_site(files: list[Path], multiaddr: Multiaddr) -> CID: async def publish_site(multiaddr: Multiaddr) -> CID: - path = Path(__file__).parent / "../out" + path = Path(__file__).parent / "../storybook-static" if not path.is_dir(): raise NotADirectoryError(f"No such directory: {path}") cid = await upload_site(files=[path], multiaddr=multiaddr)