Skip to content

Commit ad2f896

Browse files
authored
ci: correct nightly artifact path in publish-nightly job (#295)
## Summary - Fix `publish-nightly` job failing with `no matches found for artifacts/dist-bin/*.gz` - `upload-artifact` with `path: dist-bin/sentry-*` strips the `dist-bin/` prefix — artifacts are stored as `sentry-linux-x64.gz`, not `dist-bin/sentry-linux-x64.gz` - With `download-artifact`'s `merge-multiple: true`, files end up at `artifacts/*.gz`, not `artifacts/dist-bin/*.gz` Fixes https://github.com/getsentry/cli/actions/runs/22420624136/job/64917462673
1 parent 946db74 commit ad2f896

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -361,7 +361,7 @@ jobs:
361361
362362
# Upload the new .gz binaries and the version manifest
363363
gh release upload nightly \
364-
artifacts/dist-bin/*.gz \
364+
artifacts/*.gz \
365365
version.json
366366
367367
ci-status:

0 commit comments

Comments
 (0)