From 5bade2d46724a833cf3897e5ee93596825d6ee53 Mon Sep 17 00:00:00 2001 From: Yuriy Kirillov Date: Wed, 26 Aug 2026 21:34:15 +0200 Subject: [PATCH] fix: resolve build-apps-bundle's local action ref for external callers (#164) ./.github/actions/build-bundle resolves against the calling repo's own checkout, not flightdeck's - broke every external caller (confirmed live on dupmachine/flightdeck: publish-apps-bundle failed instantly, and the deploy job gated on it got skipped, so a real release shipped zero apps). Use the same $/ self-repository-relative convention already used throughout this repo's own workflows instead of a hardcoded version tag, so it doesn't need bumping every release. --- .github/actions/build-apps-bundle/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/actions/build-apps-bundle/action.yml b/.github/actions/build-apps-bundle/action.yml index 52d522b..60ccb2f 100644 --- a/.github/actions/build-apps-bundle/action.yml +++ b/.github/actions/build-apps-bundle/action.yml @@ -22,7 +22,7 @@ outputs: runs: using: composite steps: - - uses: ./.github/actions/build-bundle + - uses: $/.github/actions/build-bundle id: build with: paths: ${{ inputs.paths }}