diff --git a/.github/create_code_connect/index.js b/.github/create_code_connect/index.js index 3c1c1954..0309cf17 100644 --- a/.github/create_code_connect/index.js +++ b/.github/create_code_connect/index.js @@ -2,8 +2,8 @@ import { readFileSync } from "fs"; import { generateCodeConnectFile } from "../../dist/scripts/code-connect/generate-code-connect-file.js"; const main = async () => { - const iconManifest = new Map(Object.entries(JSON.parse(readFileSync("../../outputs/icon-manifest.json")))); - const dir = "../../outputs"; + const iconManifest = new Map(Object.entries(JSON.parse(readFileSync("outputs/icon-manifest.json")))); + const dir = "outputs"; generateCodeConnectFile(dir, iconManifest); };