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>
This commit is contained in:
James Rich 2026-03-14 06:44:03 -05:00
parent 06f002a198
commit 832e785785

View file

@ -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