Skip to content

Commit

Permalink
chi: fix artifacts | add app in targets | add updater in build args |…
Browse files Browse the repository at this point in the history
… add keep universal
  • Loading branch information
shanimal08 committed Dec 13, 2024
1 parent bfe1492 commit 57f7258
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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') ) }}
Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down Expand Up @@ -70,4 +70,4 @@
"typescript-eslint": "^8.17.0",
"vite": "^5.4.11"
}
}
}
2 changes: 1 addition & 1 deletion src-tauri/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
4 changes: 2 additions & 2 deletions src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
@@ -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",
Expand All @@ -11,7 +11,7 @@
},
"bundle": {
"active": true,
"targets": "all",
"targets": ["deb", "rpm", "appimage", "msi", "dmg", "app"],
"macOS": {
"providerShortName": "Tari Labs, LLC"
},
Expand Down

0 comments on commit 57f7258

Please sign in to comment.