diff --git a/.github/workflows/beta_release.yml b/.github/workflows/beta_release.yml index 390f09625..3023bd278 100644 --- a/.github/workflows/beta_release.yml +++ b/.github/workflows/beta_release.yml @@ -79,6 +79,7 @@ jobs: yq eval ".productName = \"Tari Universe ${{ env.BETA_STRING }}\"" -i tauri.conf.json yq eval ".mainBinaryName = \"Tari Universe ${{ env.BETA_STRING }}\"" -i tauri.conf.json yq eval ".version += \"-${BETA_DATE}\"" -i tauri.conf.json + yq eval ".bundle.windows.wix.version += \".${BETA_DATE}\"" -i tauri.conf.json yq eval ".app.windows[0].title = \"Tari Universe ${{ env.BETA_STRING }} | Testnet\"" -i tauri.conf.json yq eval ".identifier = \"com.tari.universe.beta\"" -i tauri.conf.json yq eval ".plugins.updater.endpoints = [\"https://raw.githubusercontent.com/tari-project/universe/${{ env.BETA_BRANCH_NAME }}/.updater/beta-latest.json\"]" \ @@ -211,10 +212,9 @@ jobs: - name: Debug step {artifactPaths} continue-on-error: true - env: - artifactPaths: ${{ steps.build.outputs.artifactPaths }} shell: bash - run: echo "Artifact ID from previous job is ${{ env.artifactPaths }}" + run: | + echo "Artifact paths:\n ${{ join(fromJSON(steps.build.outputs.artifactPaths), '\n') }}" - name: Upload BETA releases if: ${{ (steps.build.outputs.artifactPaths) && ( github.event_name == 'schedule' ) || ( ! startsWith(github.ref, 'refs/heads/release') ) }} diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index 4e6d618fb..7a0da6d97 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -27,7 +27,12 @@ "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": true, + "windows": { + "wix": { + "version": "0.7.7" + } + } }, "productName": "Tari Universe (Alpha)", "mainBinaryName": "Tari Universe (Alpha)",