From 20392ff175d9fbe0fd9e24d936db1567c6037c56 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Guillem=20C=C3=B3rdoba?= Date: Thu, 5 Sep 2024 20:25:27 +0200 Subject: [PATCH] Update release-tauri-app.yaml --- .github/workflows/release-tauri-app.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release-tauri-app.yaml b/.github/workflows/release-tauri-app.yaml index 6082e81c..9b0f95be 100644 --- a/.github/workflows/release-tauri-app.yaml +++ b/.github/workflows/release-tauri-app.yaml @@ -124,6 +124,11 @@ jobs: run: | npm install + - name: build the app in nix to work around sysroot issue building tx5 + if: matrix.platform == 'macos-latest' + run: | + nix develop --command bash -c "cargo build --bins --features tauri/custom-protocol,tauri/native-tls --release" + - name: Print version run: | echo "The Version was: ${{ needs.publish-happ.outputs.appVersion }}" @@ -147,3 +152,4 @@ jobs: releaseId: ${{ needs.publish-happ.outputs.releaseId }} releaseDraft: true prerelease: true + args: ${{ matrix.args }}