From 32fd01ed338d6d99faa2611648ba78935babbd25 Mon Sep 17 00:00:00 2001 From: Alex Yang Date: Tue, 25 Jul 2023 11:41:32 -0700 Subject: [PATCH] build: fix ci (#3373) --- .github/workflows/nightly-build.yml | 2 +- apps/core/src/bootstrap/register-plugins.ts | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/.github/workflows/nightly-build.yml b/.github/workflows/nightly-build.yml index 0a08c15bf..bbdff4bd3 100644 --- a/.github/workflows/nightly-build.yml +++ b/.github/workflows/nightly-build.yml @@ -120,7 +120,7 @@ jobs: run: ./scripts/set-version.sh ${{ needs.set-build-version.outputs.version }} - uses: actions/download-artifact@v3 with: - name: before-make-web-static + name: core path: apps/electron/resources/web-static - name: Build Plugins diff --git a/apps/core/src/bootstrap/register-plugins.ts b/apps/core/src/bootstrap/register-plugins.ts index 7d7dadd44..ca7cdf1db 100644 --- a/apps/core/src/bootstrap/register-plugins.ts +++ b/apps/core/src/bootstrap/register-plugins.ts @@ -141,7 +141,6 @@ await Promise.all( if (res.ok) { // todo: how to put css file into sandbox? return res.text().then(text => { - console.log('text', text); const style = document.createElement('style'); style.setAttribute('plugin-id', plugin); style.textContent = text;