From dc09d67d7cd462441e7efc1544b0ffd849481a10 Mon Sep 17 00:00:00 2001 From: "Nathan.fooo" <86001920+appflowy@users.noreply.github.com> Date: Tue, 21 Mar 2023 17:22:47 +0800 Subject: [PATCH] ci: fix tauri CI (#2040) * ci: print log * ci: sudo install * ci: enable ubuntu * ci: try to fix * ci: force run tauri ci * ci: update node version * ci: specific build protoc-gen-ts ts version --- frontend/scripts/makefile/protobuf.toml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/frontend/scripts/makefile/protobuf.toml b/frontend/scripts/makefile/protobuf.toml index 463a1bd5f2..094ee82429 100644 --- a/frontend/scripts/makefile/protobuf.toml +++ b/frontend/scripts/makefile/protobuf.toml @@ -1,19 +1,19 @@ [tasks.install_tauri_protobuf.windows] script = """ -npm install -g protoc-gen-ts +npm install -g protoc-gen-ts typescript@4.9.5 """ script_runner = "@shell" [tasks.install_tauri_protobuf.mac] script = """ -npm install -g protoc-gen-ts +sudo npm install -g protoc-gen-ts typescript@4.9.5 """ script_runner = "@shell" [tasks.install_tauri_protobuf.linux] script = """ -sudo npm install -g protoc-gen-ts +sudo npm install -g protoc-gen-ts typescript@4.9.5 """ script_runner = "@shell"