Skip to content

Commit 7bd5664

Browse files
committed
ci: fix Linux build — use cargo-tauri binary name
1 parent 8d2ca50 commit 7bd5664

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: cargo install tauri-cli --version "^2"
5252

5353
- name: Build Tauri (Linux)
54-
run: cargo tauri build --bundles appimage,deb
54+
run: cargo-tauri build --bundles appimage,deb
5555
env:
5656
CI: true
5757

@@ -98,7 +98,7 @@ jobs:
9898
run: cargo install tauri-cli --version "^2"
9999

100100
- name: Build Tauri (Windows)
101-
run: cargo tauri build --bundles msi,nsis
101+
run: cargo-tauri build --bundles msi,nsis
102102
env:
103103
CI: 'true'
104104

next-env.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
import "./.next/types/routes.d.ts";
3+
import "./.next/dev/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

0 commit comments

Comments
 (0)