From d98faf1933adf2f5062755392deec91a5e10d2fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Soko=C5=82owski?= Date: Tue, 11 Jan 2022 09:24:02 +0100 Subject: [PATCH] ci: fix build folder in scripts/deploy.js MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jakub SokoĊ‚owski --- scripts/deploy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy.js b/scripts/deploy.js index dc8173e..75f7ce8 100644 --- a/scripts/deploy.js +++ b/scripts/deploy.js @@ -5,7 +5,7 @@ const ghpublish = promisify(publish) /* fix for "Unhandled promise rejections" */ process.on('unhandledRejection', err => { throw err }) -const distDir = '_site' +const distDir = 'dist' const branch = 'gh-pages' const org = 'vacp2p' const repo = 'wakuconnect.dev'