diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index db98ba8..c59cc95 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -9,14 +9,14 @@ on: app-slug: description: "The slug of your app in your CrabNebula Cloud org" required: true - default: "super-tauri-app" + default: "pulsar" concurrency: group: ${{ github.workflow }}-${{ github.ref }} cancel-in-progress: true env: - CN_APP_SLUG: ${{ github.event.inputs.app-slug || 'super-tauri-app' }} + CN_APP_SLUG: ${{ github.event.inputs.app-slug || 'pulsar' }} jobs: draft: @@ -43,7 +43,15 @@ jobs: steps: - uses: actions/checkout@v4 - - uses: actions/setup-node@v4 + - name: Install pnpm + uses: pnpm/action-setup@v3 + with: + version: 9 + - name: Use Node.js + uses: actions/setup-node@v4 + with: + node-version: "20" + cache: "pnpm" - name: Install stable toolchain uses: actions-rust-lang/setup-rust-toolchain@v1 with: diff --git a/src-tauri/src/main.rs b/src-tauri/src/main.rs index 7f15fb6..223f509 100644 --- a/src-tauri/src/main.rs +++ b/src-tauri/src/main.rs @@ -9,13 +9,15 @@ mod error; mod util; -use std::path::Path; -// use log::info; use error::Error; use futures::future::try_join_all; +use std::path::Path; +use util::FolderStat; + +#[cfg(debug_assertions)] use specta::collect_types; +#[cfg(debug_assertions)] use tauri_specta::ts; -use util::FolderStat; // use tauri_plugin_log::LogTarget; diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 2af244d..fc1fd01 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -31,7 +31,7 @@ "bundle": { "active": true, "targets": "all", - "identifier": "com.tauri.dev", + "identifier": "pulsar.atila.io", "icon": [ "icons/32x32.png", "icons/128x128.png",