Skip to content

Commit b2bf365

Browse files
committed
chore: update CI workflows for Tauri app builds
- Removed debug flag from Tauri build commands for both Windows and Linux. - Updated artifact names and paths for Windows build to reflect the new naming convention.
1 parent 96ff476 commit b2bf365

File tree

2 files changed

+4
-10
lines changed

2 files changed

+4
-10
lines changed

.github/workflows/ci-windows.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,10 +40,10 @@ jobs:
4040
run: bun install
4141

4242
- name: Build Tauri App
43-
run: bun tauri build --bundles nsis --debug
43+
run: bun tauri build --bundles nsis
4444

4545
- name: Upload build artifacts
4646
uses: actions/upload-artifact@v4
4747
with:
48-
name: Windows_x64
49-
path: src-tauri/target/debug/bundle/**/*.exe
48+
name: Codexia_windows_x64
49+
path: src-tauri/target/release/bundle/**/*.exe

.github/workflows/ci.yml

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -60,10 +60,4 @@ jobs:
6060
run: bun install
6161

6262
- name: Build Tauri App
63-
run: bun tauri build --bundles deb --debug
64-
65-
- name: Upload build artifacts
66-
uses: actions/upload-artifact@v4
67-
with:
68-
name: linux-x64
69-
path: src-tauri/target/debug/**/*.deb
63+
run: bun tauri build --bundles deb

0 commit comments

Comments
 (0)