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:
parent
bb7314bc37
commit
a2d5672e72
2
.github/workflows/promote-release.yml
vendored
2
.github/workflows/promote-release.yml
vendored
@ -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
|
||||
|
||||
2
.github/workflows/release.yml
vendored
2
.github/workflows/release.yml
vendored
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user