diff --git a/.github/workflows/build-linux.yml b/.github/workflows/build-linux.yml index c0fb16d..44075b4 100644 --- a/.github/workflows/build-linux.yml +++ b/.github/workflows/build-linux.yml @@ -80,6 +80,11 @@ jobs: echo "APP_VERSION=${VERSION}-dev" >> $GITHUB_ENV fi + - name: Prepare platform-specific resources + run: | + echo "Removing Windows ArgyllCMS binaries to avoid bundling them in Linux packages..." + rm -rf src-tauri/argyll/windows-x86_64 + - name: Build Tauri App env: APPIMAGE_EXTRACT_AND_RUN: 1 diff --git a/.github/workflows/build-windows.yml b/.github/workflows/build-windows.yml index 07135d5..bf119ac 100644 --- a/.github/workflows/build-windows.yml +++ b/.github/workflows/build-windows.yml @@ -64,6 +64,14 @@ jobs: "APP_VERSION=$VERSION-dev" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append } + - name: Prepare platform-specific resources + shell: powershell + run: | + if (Test-Path "src-tauri\argyll\linux-x86_64") { + Write-Host "Removing Linux ArgyllCMS binaries to avoid bundling them in Windows installer..." + Remove-Item -Recurse -Force "src-tauri\argyll\linux-x86_64" + } + - name: Build Tauri App run: npm run tauri build -- -v diff --git a/package.json b/package.json index d30ec59..425a87f 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "iccery", "private": true, - "version": "0.1.8", + "version": "0.1.9", "type": "module", "scripts": { "tauri": "tauri" diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index bdd6fba..c7cb738 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "iccery" -version = "0.1.8" +version = "0.1.9" description = "A Tauri App" authors = ["you"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 9304532..07cfef0 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "ICCery", - "version": "0.1.8", + "version": "0.1.9", "identifier": "com.gronod.iccery", "build": { "frontendDist": "../src"