Skip to content

Commit b31f79f

Browse files
committed
fix github workflows
1 parent e098dc3 commit b31f79f

1 file changed

Lines changed: 16 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,14 +57,26 @@ jobs:
5757
working-directory: screenkey-app
5858
run: npm run build
5959

60+
- name: Verify dist folder
61+
working-directory: screenkey-app
62+
run: |
63+
if [ ! -d "dist" ]; then
64+
echo "Error: dist folder was not created"
65+
pwd
66+
ls -la
67+
exit 1
68+
fi
69+
echo "✓ dist folder exists"
70+
ls -la dist | head -10
71+
6072
- name: Rust format check
6173
working-directory: screenkey-app/src-tauri
6274
run: cargo fmt --all -- --check
6375

6476
- name: Rust clippy
6577
working-directory: screenkey-app/src-tauri
66-
run: cargo clippy --all-targets --all-features -- -D warnings
78+
run: cargo clippy --all-targets -- -D warnings
6779

68-
- name: Rust check
69-
working-directory: screenkey-app/src-tauri
70-
run: cargo check --all-targets --all-features
80+
- name: Build Tauri app
81+
working-directory: screenkey-app
82+
run: npm run tauri build

0 commit comments

Comments
 (0)