From c66d0f326ce4209f7298402c20bfcb226616012c Mon Sep 17 00:00:00 2001 From: Offending Commit Date: Mon, 27 Apr 2026 14:48:44 -0500 Subject: [PATCH] fix(release): use tauri-action beforeBuildCommand for web build Moves web frontend build into tauri-action's beforeBuildCommand so Turborepo's dependency graph drives the ordering rather than a detached workflow step that can be reordered away from the action that needs it. --- .github/workflows/release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 551c423..19a37c9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -62,4 +62,5 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: releaseId: ${{ steps.get-release.outputs.release_id }} + beforeBuildCommand: pnpm turbo build --filter=@openconcho/web args: --target ${{ matrix.target }}