diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0b99d2d30..5a3f58630 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -34,7 +34,7 @@ jobs: - platform: 'ubuntu-22.04' args: '' - platform: 'windows-latest' - args: '--bundles msi,updater' + args: '' - platform: 'macos-latest' args: '--target universal-apple-darwin' runs-on: ${{ matrix.platform }} @@ -213,7 +213,10 @@ jobs: prerelease: true includeDebug: false includeRelease: true - args: ${{ matrix.args }} --features "${{ env.TS_FEATURES }}" + includeUpdaterJson: true + retryAttempts: 2 + updaterJsonKeepUniversal: true + args: --bundles updater ${{ matrix.args }} --features "${{ env.TS_FEATURES }}" - name: Debug Step - artifactPaths if: ${{ ( github.event_name == 'schedule' ) || ( ! startsWith(github.ref, 'refs/heads/release') ) }} diff --git a/package.json b/package.json index 120345479..dec61bf09 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "tari-universe", "private": true, - "version": "0.8.19", + "version": "0.8.20", "type": "module", "scripts": { "dev": "vite dev --mode development", @@ -70,4 +70,4 @@ "typescript-eslint": "^8.17.0", "vite": "^5.4.11" } -} \ No newline at end of file +} diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index d9b74bc46..ce90b580b 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -4,7 +4,7 @@ description = "Tari Universe" edition = "2021" name = "tari-universe" repository = "https://github.com/tari-project/universe" -version = "0.8.19" +version = "0.8.20" # See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 155694e05..bd0e62d23 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,5 +1,5 @@ { - "version": "0.8.19", + "version": "0.8.20", "productName": "Tari Universe (Alpha)", "mainBinaryName": "Tari Universe (Alpha)", "identifier": "com.tari.universe.alpha", @@ -11,7 +11,7 @@ }, "bundle": { "active": true, - "targets": "all", + "targets": ["deb", "rpm", "appimage", "msi", "dmg", "app"], "macOS": { "providerShortName": "Tari Labs, LLC" },