build: fix ci (#3373)

This commit is contained in:
Alex Yang
2023-07-25 11:41:32 -07:00
committed by GitHub
parent 00718f8c9a
commit 32fd01ed33
2 changed files with 1 additions and 2 deletions

View File

@@ -120,7 +120,7 @@ jobs:
run: ./scripts/set-version.sh ${{ needs.set-build-version.outputs.version }} run: ./scripts/set-version.sh ${{ needs.set-build-version.outputs.version }}
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v3
with: with:
name: before-make-web-static name: core
path: apps/electron/resources/web-static path: apps/electron/resources/web-static
- name: Build Plugins - name: Build Plugins

View File

@@ -141,7 +141,6 @@ await Promise.all(
if (res.ok) { if (res.ok) {
// todo: how to put css file into sandbox? // todo: how to put css file into sandbox?
return res.text().then(text => { return res.text().then(text => {
console.log('text', text);
const style = document.createElement('style'); const style = document.createElement('style');
style.setAttribute('plugin-id', plugin); style.setAttribute('plugin-id', plugin);
style.textContent = text; style.textContent = text;