Skip to content

Commit 17a73da

Browse files
committed
chore: refine CI workflow to include specific src-tauri paths
This commit updates the CI workflow configuration to explicitly include paths for various src-tauri files, ensuring that changes in these files trigger the appropriate CI processes. The previous paths-ignore for certain files have been removed to enhance build monitoring.
1 parent 9fff4ab commit 17a73da

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,33 @@ on:
77
paths:
88
- ".github/workflows/ci.yml"
99
- "src/**"
10-
- "src-tauri/**"
10+
- "src-tauri/src/**"
11+
- "src-tauri/capabilities/**"
12+
- "src-tauri/icons/**"
13+
- "src-tauri/Cargo.toml"
14+
- "src-tauri/Cargo.lock"
15+
- "src-tauri/tauri.conf.json"
16+
- "src-tauri/build.rs"
1117
- "codex-client/**"
1218
- "codex-bindings/**"
1319
- "Cargo.toml"
1420
- "package.json"
15-
paths-ignore:
16-
- "src-tauri/Info.plist"
17-
- "src-tauri/entitlements.plist"
1821
pull_request:
1922
branches:
2023
- main
2124
paths:
2225
- "src/**"
23-
- "src-tauri/**"
26+
- "src-tauri/src/**"
27+
- "src-tauri/capabilities/**"
28+
- "src-tauri/icons/**"
29+
- "src-tauri/Cargo.toml"
30+
- "src-tauri/Cargo.lock"
31+
- "src-tauri/tauri.conf.json"
32+
- "src-tauri/build.rs"
2433
- "codex-client/**"
2534
- "codex-bindings/**"
2635
- "Cargo.toml"
2736
- "package.json"
28-
paths-ignore:
29-
- "src-tauri/Info.plist"
30-
- "src-tauri/entitlements.plist"
3137

3238
env:
3339
VITE_REDIRECT_URL: ${{ secrets.VITE_REDIRECT_URL }}

0 commit comments

Comments
 (0)