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: 'npm'
cache-dependency-path: package-lock.json cache-dependency-path: package-lock.json
- name: Install dependencies - name: Install dependencies
working-directory: src/main/node
run: npm ci run: npm ci
- name: Build Electron bundles - name: Build Electron bundles
working-directory: src/main/node
run: ${{ matrix.build-command }} run: ${{ matrix.build-command }}
- name: Upload Electron artifacts - name: Upload Electron artifacts
uses: actions/upload-artifact@v4 uses: actions/upload-artifact@v4
with: with:
name: ${{ matrix.artifact-name }} name: ${{ matrix.artifact-name }}
path: src/main/node/dist/** path: dist/**
docker: docker:
runs-on: ubuntu-latest runs-on: ubuntu-latest

1
.gitignore vendored
View File

@@ -1,6 +1,7 @@
/target /target
/.idea /.idea
/.vscode /.vscode
/dist
*.iml *.iml
local/ local/
*.log *.log