Skip to content

Commit 28c00c7

Browse files
committed
fix(ci): correct artifact path in publish-nightly job
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, files end up at artifacts/*.gz, not artifacts/dist-bin/*.gz.
1 parent 946db74 commit 28c00c7

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)