fix(ci): correct artifact glob paths for release upload

SHA256SUMS is generated at artifacts/SHA256SUMS (not nested in a
subdirectory), so use artifacts/SHA256SUMS instead of artifacts/**/SHA256SUMS.
Also use artifacts/*/ single-level glob to match the download-artifact
directory structure.

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
jordanthejet 2026-03-07 17:53:05 -05:00
parent bb7314bc37
commit a2d5672e72
2 changed files with 2 additions and 2 deletions

View File

@ -161,7 +161,7 @@ jobs:
--title "${{ needs.validate.outputs.tag }}" \
--latest \
--generate-notes \
artifacts/**/*.tar.gz artifacts/**/*.zip artifacts/**/SHA256SUMS
artifacts/*/*.tar.gz artifacts/*/*.zip artifacts/SHA256SUMS
docker:
name: Push Docker Image

View File

@ -145,7 +145,7 @@ jobs:
--title "${{ needs.version.outputs.tag }}" \
--prerelease \
--generate-notes \
artifacts/**/*.tar.gz artifacts/**/*.zip artifacts/**/SHA256SUMS
artifacts/*/*.tar.gz artifacts/*/*.zip artifacts/SHA256SUMS
docker:
name: Push Docker Image