Skip to content

Commit e127e3d

Browse files
committed
fix(ci): Use full package names for pnpm filters
Updated filters to use @munlicode/munliwall-* format to correctly match workspace packages.
1 parent 3597c43 commit e127e3d

1 file changed

Lines changed: 5 additions & 11 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -34,35 +34,29 @@ jobs:
3434
# Build Core package
3535
# ------------------------------
3636
- name: Build Core Package
37-
run: pnpm --filter core run build
37+
run: pnpm --filter @munlicode/munliwall-core run build
3838

3939
# ------------------------------
4040
# Build & Publish Desktop App
4141
# ------------------------------
4242
- name: Build and Publish Desktop App (Linux)
4343
env:
4444
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
45-
run: pnpm --filter desktop-app run release:linux
45+
run: pnpm --filter @munlicode/munliwall-desktop run release:linux
4646

4747
# ------------------------------
4848
# Build CLI (Optional / Secondary)
4949
# ------------------------------
5050
- name: Build CLI
51-
run: pnpm --filter cli run build
51+
run: pnpm --filter @munlicode/munliwall-cli run build
5252

5353
- name: Package CLI
54-
run: pnpm --filter cli run dist
55-
56-
- name: List CLI directory (Debug)
57-
run: |
58-
ls -la packages/cli
59-
ls -la packages/cli/dist || echo "dist dir not found"
54+
run: pnpm --filter @munlicode/munliwall-cli run dist
6055

6156
- name: Zip CLI Artifacts
6257
run: |
6358
mkdir -p artifacts
64-
cd packages/cli
65-
zip -r ../../artifacts/cli.zip dist
59+
zip -r artifacts/cli.zip packages/cli/dist
6660
6761
# ------------------------------
6862
# Upload CLI Artifacts to Release

0 commit comments

Comments
 (0)