mirror of
https://github.com/imgfloat/server.git
synced 2026-02-05 03:39:26 +00:00
fix working directory paths
This commit is contained in:
4
.github/workflows/ci.yml
vendored
4
.github/workflows/ci.yml
vendored
@@ -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
1
.gitignore
vendored
@@ -1,6 +1,7 @@
|
|||||||
/target
|
/target
|
||||||
/.idea
|
/.idea
|
||||||
/.vscode
|
/.vscode
|
||||||
|
/dist
|
||||||
*.iml
|
*.iml
|
||||||
local/
|
local/
|
||||||
*.log
|
*.log
|
||||||
|
|||||||
Reference in New Issue
Block a user