Fix powershel
This commit is contained in:
parent
89de623d87
commit
175f6e6fda
|
|
@ -34,12 +34,12 @@ jobs:
|
||||||
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
|
sudo apt-get install -y libwebkit2gtk-4.1-dev libappindicator3-dev librsvg2-dev patchelf
|
||||||
|
|
||||||
- name: Set version for Windows build
|
- name: Set version for Windows build
|
||||||
if: matrix.platform == 'windows-latest'
|
if: matrix.platform == 'windows-latest' # Only run on Windows
|
||||||
shell: pwsh # Use PowerShell on Windows runners
|
shell: pwsh # Use PowerShell on Windows runners
|
||||||
run: |
|
run: |
|
||||||
# Get the version from the Git tag (e.g., v0.6.3-alpha)
|
# Get the version from the Git tag (e.g., v0.6.3-alpha)
|
||||||
$VERSION = ${GITHUB_REF.Substring('refs/tags/'.Length)}
|
$VERSION = ${GITHUB_REF.Substring('refs/tags/'.Length)}
|
||||||
|
|
||||||
# Replace '-alpha' with '-0' and '-beta' with '-1' only for Windows version
|
# Replace '-alpha' with '-0' and '-beta' with '-1' only for Windows version
|
||||||
if ($VERSION -match "-alpha") {
|
if ($VERSION -match "-alpha") {
|
||||||
$WINDOWS_VERSION = $VERSION -replace "-alpha$", "-0"
|
$WINDOWS_VERSION = $VERSION -replace "-alpha$", "-0"
|
||||||
|
|
@ -48,14 +48,19 @@ jobs:
|
||||||
} else {
|
} else {
|
||||||
$WINDOWS_VERSION = $VERSION
|
$WINDOWS_VERSION = $VERSION
|
||||||
}
|
}
|
||||||
|
|
||||||
# Copy tauri.conf.json to tauri.windows.conf.json and substitute version number for Windows
|
# Copy tauri.conf.json to tauri.windows.conf.json and substitute version number for Windows
|
||||||
Copy-Item src-tauri/tauri.conf.json -Destination src-tauri/tauri.windows.conf.json
|
Copy-Item src-tauri/tauri.conf.json -Destination src-tauri/tauri.windows.conf.json
|
||||||
(Get-Content src-tauri/tauri.windows.conf.json) | ForEach-Object { $_ -replace '"version": ".*"', '"version": "' + $WINDOWS_VERSION + '"' } | Set-Content src-tauri/tauri.windows.conf.json
|
|
||||||
|
# Modify the version in tauri.windows.conf.json
|
||||||
|
(Get-Content src-tauri/tauri.windows.conf.json) | ForEach-Object {
|
||||||
|
$_ -replace '"version": ".*"', ('"version": "' + $WINDOWS_VERSION + '"')
|
||||||
|
} | Set-Content src-tauri/tauri.windows.conf.json
|
||||||
|
|
||||||
# Export the Windows version for use in subsequent steps
|
# Export the Windows version for use in subsequent steps
|
||||||
echo "WINDOWS_VERSION=$WINDOWS_VERSION" >> $env:GITHUB_ENV
|
echo "WINDOWS_VERSION=$WINDOWS_VERSION" >> $env:GITHUB_ENV
|
||||||
|
|
||||||
|
|
||||||
- name: Set version for all platforms
|
- name: Set version for all platforms
|
||||||
run: |
|
run: |
|
||||||
# Extract the version from the Git tag (it should be the same across platforms)
|
# Extract the version from the Git tag (it should be the same across platforms)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue