diff --git a/.github/workflows/publish-to-auto-release.yml b/.github/workflows/publish-to-auto-release.yml index 79a488a..419bca7 100644 --- a/.github/workflows/publish-to-auto-release.yml +++ b/.github/workflows/publish-to-auto-release.yml @@ -3,7 +3,7 @@ name: "publish-dwata-desktop-app" on: push: branches: - - 'release/**' + - "release/**" # This is the example from the readme. # On each push to the `release` branch it will create or update a GitHub release, build your app, and upload the artifacts to the release. @@ -36,7 +36,7 @@ jobs: sudo apt-get install -y libgtk-3-dev libwebkit2gtk-4.0-dev libappindicator3-dev librsvg2-dev patchelf - name: install frontend dependencies - run: yarn install # change this to npm or pnpm depending on which one you use + run: pnpm install # change this to npm or pnpm depending on which one you use - uses: tauri-apps/tauri-action@v0 env: diff --git a/package.json b/package.json index 12892b4..1b5c9fe 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "dwata", - "version": "0.0.8", + "version": "0.0.9", "description": "General purpose AI Studio", "type": "module", "scripts": { diff --git a/src-tauri/Cargo.lock b/src-tauri/Cargo.lock index cff3d8e..31e99ad 100644 --- a/src-tauri/Cargo.lock +++ b/src-tauri/Cargo.lock @@ -1038,7 +1038,7 @@ checksum = "56ce8c6da7551ec6c462cbaf3bfbc75131ebbfa1c944aeaa9dab51ca1c5f0c3b" [[package]] name = "dwata" -version = "0.0.8" +version = "0.0.9" dependencies = [ "chrono", "comrak", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index f58dc19..5fbf9b2 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -3,8 +3,8 @@ members = ["openai"] [package] name = "dwata" -version = "0.0.8" -description = "An AI studio whee you connect your data sources and have convesations with AI" +version = "0.0.9" +description = "General purpose AI Studio" authors = ["Sumit Datta "] license = "Apache-2.0 license" repository = "https://github.com/brainless/dwata"