From 832e785785f7d449b90ba8caa6fbac90e81de5a2 Mon Sep 17 00:00:00 2001 From: James Rich <2199651+jamesarich@users.noreply.github.com> Date: Sat, 14 Mar 2026 06:44:03 -0500 Subject: [PATCH] ci(release): update artifact glob pattern to be recursive This commit updates the release workflow to ensure all files within the artifacts directory are correctly captured, regardless of nesting depth. Specific changes include: - Updated the `files` path in both draft and final release steps from `./artifacts/*/*` to `./artifacts/**/*` to support recursive file matching. Signed-off-by: James Rich <2199651+jamesarich@users.noreply.github.com> --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f52f10043..6a9944a00 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -340,7 +340,7 @@ jobs: target_commitish: ${{ inputs.commit_sha || github.sha }} name: ${{ inputs.tag_name }} (${{ needs.prepare-build-info.outputs.APP_VERSION_CODE }}) generate_release_notes: true - files: ./artifacts/*/* + files: ./artifacts/**/* draft: true prerelease: true @@ -354,6 +354,6 @@ jobs: tag_name: ${{ inputs.tag_name }} name: ${{ inputs.tag_name }} (${{ needs.prepare-build-info.outputs.APP_VERSION_CODE }}) generate_release_notes: false - files: ./artifacts/*/* + files: ./artifacts/**/* draft: false prerelease: true \ No newline at end of file