Skip to content

Commit

Permalink
fix: updater artifacts V1 compatible (#1239)
Browse files Browse the repository at this point in the history
Description
---
- fixes missing release artifacts after Tauri V2 merge:

needed to change `createUpdaterArtifacts` to
[`v1Compatible`](https://tauri.app/plugin/updater/#building) for the
zips

How Has This Been Tested?
---

-  beta build branch:


macOs: 


![image](https://github.com/user-attachments/assets/872bd46e-adb1-45d9-a349-5f25a26846c8)


linux:

![image](https://github.com/user-attachments/assets/29f8da88-39b1-4921-9b61-63d27726ea6e)

windows: 

![image](https://github.com/user-attachments/assets/f0970272-a568-41ef-9552-101098e16175)



What process can a PR reviewer use to test or verify this change?
---


- check artifacts in [the release
workflow](https://github.com/tari-project/universe/actions/runs/12294412932)
  • Loading branch information
shanimal08 authored Dec 12, 2024
1 parent 7f9cd01 commit e5e81da
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
- name: Build Tauri Apps
id: build
uses: tauri-apps/[email protected].16
uses: tauri-apps/[email protected].17
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
ENABLE_CODE_SIGNING: ${{ secrets.APPLE_CERTIFICATE || secrets.AZURE_TENANT_ID }}
Expand Down
2 changes: 1 addition & 1 deletion src-tauri/tauri.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
"shortDescription": "Tari Universe is a mining app for Tari.",
"longDescription": "Introducing Tari Universe, the beautifully simple mining app for Tari. Install it on your Mac or PC and start mining Tari with one click.",
"publisher": "Tari Labs, LLC",
"createUpdaterArtifacts": true
"createUpdaterArtifacts": "v1Compatible"
},
"app": {
"security": {
Expand Down

0 comments on commit e5e81da

Please sign in to comment.