ci: avoid twice by nx (#8279)

This commit is contained in:
forehalo
2024-09-18 05:09:42 +00:00
parent ccd630a2b0
commit e7ac43f0f7
7 changed files with 11 additions and 14 deletions

View File

@@ -296,8 +296,8 @@ jobs:
path: ./packages/backend/native/server-native.node
if-no-files-found: error
build-web:
name: Build @affine/web
build-electron-renderer:
name: Build @affine/electron renderer
runs-on: ubuntu-latest
steps:
@@ -307,9 +307,9 @@ jobs:
with:
electron-install: false
full-cache: true
- name: Build Web
- name: Build Electron renderer
# always skip cache because its fast, and cache configuration is always changing
run: yarn nx build @affine/web --skip-nx-cache
run: yarn build
env:
DISTRIBUTION: desktop
- name: zip web
@@ -520,7 +520,7 @@ jobs:
test: true,
}
needs:
- build-web
- build-electron-renderer
- build-native
steps:
- uses: actions/checkout@v4