fix working directory paths

This commit is contained in:
2026-01-04 15:24:10 +01:00
parent 303adef0a1
commit 23d8342bca
2 changed files with 2 additions and 3 deletions

View File

@@ -42,16 +42,14 @@ jobs:
cache: 'npm'
cache-dependency-path: package-lock.json
- name: Install dependencies
working-directory: src/main/node
run: npm ci
- name: Build Electron bundles
working-directory: src/main/node
run: ${{ matrix.build-command }}
- name: Upload Electron artifacts
uses: actions/upload-artifact@v4
with:
name: ${{ matrix.artifact-name }}
path: src/main/node/dist/**
path: dist/**
docker:
runs-on: ubuntu-latest