This commit is contained in:
skykooler 2024-12-19 00:23:14 -05:00 committed by GitHub
parent 724d1fa94b
commit 8551a7c56d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -42,7 +42,7 @@ jobs:
shell: bash shell: bash
run: | run: |
# Read the version from src-tauri/tauri.conf.json # Read the version from src-tauri/tauri.conf.json
VERSION=$(jq -r '.package.version' src-tauri/tauri.conf.json) VERSION=$(jq -r '.version' src-tauri/tauri.conf.json)
# For Windows, modify version if it contains '-alpha' or '-beta' # For Windows, modify version if it contains '-alpha' or '-beta'
if [[ "$VERSION" == *"-alpha"* ]]; then if [[ "$VERSION" == *"-alpha"* ]]; then
@ -61,7 +61,7 @@ jobs:
run: | run: |
# Read the version from src-tauri/tauri.conf.json # Read the version from src-tauri/tauri.conf.json
$tauriConf = Get-Content src-tauri/tauri.conf.json | ConvertFrom-Json $tauriConf = Get-Content src-tauri/tauri.conf.json | ConvertFrom-Json
$VERSION = $tauriConf.package.version $VERSION = $tauriConf.version
# Replace '-alpha' with '-0' and '-beta' with '-1' for Windows version # Replace '-alpha' with '-0' and '-beta' with '-1' for Windows version
if ($VERSION -match "-alpha") { if ($VERSION -match "-alpha") {