diff --git a/.github/workflows/publish_arm.yml b/.github/workflows/publish_arm.yml index 749bbbe..142c350 100644 --- a/.github/workflows/publish_arm.yml +++ b/.github/workflows/publish_arm.yml @@ -28,8 +28,9 @@ jobs: apt-get autoremove -y apt-get install curl # Install node - curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.7/install.sh | bash - nvm install 20 + curl -fsSL https://fnm.vercel.app/install | bash + # download and install Node.js + fnm use --install-if-missing 22 # Install pnpm npm install -g pnpm # Install rust diff --git a/package.json b/package.json index c25dec7..ac75f52 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "scrcpy-mask", "private": true, - "version": "0.4.0-rc3", + "version": "0.4.0-rc4", "type": "module", "scripts": { "dev": "vite", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index d616162..6d46a2f 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scrcpy-mask" -version = "0.4.0-rc3" +version = "0.4.0-rc4" description = "A Tauri App" authors = ["AkiChase"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2c5b36f..2c0006c 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,6 +1,6 @@ { "productName": "scrcpy-mask", - "version": "0.4.0-rc3", + "version": "0.4.0-rc4", "identifier": "com.akichase.mask", "build": { "beforeDevCommand": "pnpm dev",