From a3353be39c831b3b5821eef0b6ded61bba57a5c3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Pedro=20Sousa?= Date: Wed, 25 Oct 2023 22:45:45 +0100 Subject: [PATCH] cant test the workflow if not on master, wtf --- .github/scripts/setDocsStableVersion.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/setDocsStableVersion.js b/.github/scripts/setDocsStableVersion.js index dbe233e0b54..a7e0751732f 100644 --- a/.github/scripts/setDocsStableVersion.js +++ b/.github/scripts/setDocsStableVersion.js @@ -1,7 +1,7 @@ const fs = require('fs'); const path = require('path'); -const configFile = path.join(__dirname, '..', '..', 'docusaurus.config.js'); +const configFile = path.join(__dirname, '..', 'docs', 'docusaurus.config.js'); // Read the Docusaurus config const configContent = fs.readFileSync(configFile, 'utf8');