From 3493893ae31774790aeb54032327d8f252b543da Mon Sep 17 00:00:00 2001 From: amalcaraz Date: Tue, 2 May 2023 18:13:18 +0200 Subject: [PATCH] fixes --- scripts/push_on_ipfs.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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)