Skip to content

Commit

Permalink
更新版本至0.0.3
Browse files Browse the repository at this point in the history
  • Loading branch information
OldGodShen committed Jun 6, 2024
1 parent 40b5cac commit 2bbee39
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 13 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/tauri.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Tauri
name: Tauri CI

on:
push:
Expand Down Expand Up @@ -76,8 +76,8 @@ jobs:
- name: Extract version from package.json
id: extract_version
run: |
$packageJson = Get-Content -Raw -Path package.json | ConvertFrom-Json
$version = $packageJson.version
$tauriconfJson = Get-Content -Raw -Path src-tauri\tauri.conf.json | ConvertFrom-Json
$version = $tauriconfJson.version
echo "VERSION=$version" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8
- name: Create Release
Expand Down
Binary file modified bun.lockb
Binary file not shown.
15 changes: 8 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "xyyinfoquery",
"private": true,
"version": "0.0.0",
"version": "0.0.3",
"type": "module",
"scripts": {
"dev": "vite",
Expand All @@ -10,16 +10,17 @@
"tauri": "tauri"
},
"dependencies": {
"vue": "^3.3.4",
"@tauri-apps/api": ">=2.0.0-beta.0",
"@tauri-apps/plugin-shell": ">=2.0.0-beta.0"
"@tauri-apps/plugin-shell": ">=2.0.0-beta.0",
"vue": "^3.3.4"
},
"devDependencies": {
"@tauri-apps/cli": ">=2.0.0-beta.0",
"@vitejs/plugin-vue": "^5.0.4",
"internal-ip": "^7.0.0",
"toml": "^3.0.0",
"typescript": "^5.0.2",
"vite": "^5.0.0",
"vue-tsc": "^1.8.5",
"@tauri-apps/cli": ">=2.0.0-beta.0",
"internal-ip": "^7.0.0"
"vue-tsc": "^1.8.5"
}
}
}
2 changes: 1 addition & 1 deletion src-tauri/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "xyyinfoquery"
version = "0.0.0"
version = "0.0.3"
description = "A Tauri App"
authors = ["you"]
edition = "2021"
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,4 +49,4 @@
}
}
}
}
}

0 comments on commit 2bbee39

Please sign in to comment.